/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

header {
    background: linear-gradient(90deg, #0056b3, #003d80);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

header p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

header .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ff9900;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

header .cta-button:hover {
    background: #cc7a00;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

section h2 {
    margin-bottom: 20px;
    font-size: 2em;
    text-align: center;
}

section ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.1em;
    line-height: 1.8;
}

section ul li {
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
}

section ul li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5em;
    color: #0056b3;
}

section#benefits .benefit {
    text-align: center;
    margin: 20px 0;
}

section#benefits .benefit i {
    font-size: 3em;
    color: #0056b3;
    margin-bottom: 10px;
}

section#benefits .benefit h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

section#benefits .benefit p {
    font-size: 1.1em;
}

section#price p {
    font-size: 1.2em;
    text-align: center;
}

section#price .cta-button {
    display: block;
    width: 200px;
    margin: 20px auto;
}

section#contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

section#contact input[type="text"], 
section#contact input[type="email"], 
section#contact textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

section#contact button {
    padding: 15px 30px;
    background: #0056b3;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

section#contact button:hover {
    background: #003d80;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #333;
    color: white;
}

footer p {
    margin: 0;
}

#thankYouMessage {
    margin-top: 20px;
    font-size: 1.2em;
    color: #0056b3;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    header .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    section h2 {
        font-size: 1.5em;
    }

    section p,
    section ul {
        font-size: 1em;
    }

    section#price .cta-button {
        width: 100%;
    }
}
