/*
Theme Name: Astra Child
Template: astra // the word 'astra' must match the exact directory name of the parent theme folder
Version: 1.0.0
*/

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2 {
    color: #111;
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.lp-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 8px;
}

.lp-button {
    display: inline-block;
    background-color: #0073e6;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}

.lp-button:hover {
    background-color: #005bb5;
}

/* -----------------------------------------------
   Contact Form 7 Styles
   Uses a separate palette to visually distinguish
   the form section from the rest of the page.
----------------------------------------------- */
 
.wpcf7-form {
    background-color: #f0f4ff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #d0d9f0;
    margin-top: 30px;
}
 
.wpcf7-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e6b;
    margin-bottom: 16px;
}
 
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 10px 14px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #ffffff;
    border: 1px solid #aab8e0;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}
 
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus {
    border-color: #4a6fcf;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 111, 207, 0.15);
}
 
.wpcf7-form input[type="submit"] {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    padding: 13px 24px;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: #ffffff;
    background-color: #2c3e6b;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
 
.wpcf7-form input[type="submit"]:hover {
    background-color: #1a2a4a;
}
 
/* Validation error messages */
.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #c0392b;
    margin-top: 4px;
    display: block;
}
 
/* Success and error response messages */
.wpcf7-response-output {
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
}
 
.wpcf7-mail-sent-ok {
    background-color: #eafaf1;
    border: 1px solid #27ae60;
    color: #1e8449;
}
 
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    background-color: #fdf2f2;
    border: 1px solid #e74c3c;
    color: #c0392b;
}
 
