* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #2c5282;
}

.hero {
    background: linear-gradient(135deg, #2c5282 0%, #4a7ab8 100%);
    color: #fff;
    padding: 140px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.hero-points {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-points li {
    position: relative;
    padding-left: 25px;
}

.hero-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #90cdf4;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #2c5282;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.section {
    padding: 70px 0;
}

.section-alt {
    background: #f7fafc;
}

.section h2 {
    font-size: 2rem;
    color: #2c5282;
    margin-bottom: 25px;
    text-align: center;
}

.section p {
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.list li {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c5282;
    font-size: 1.5rem;
    line-height: 1;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #2c5282;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    color: #666;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
}

.form .btn-primary {
    width: 100%;
    background: #2c5282;
    color: #fff;
    padding: 15px;
    font-size: 1.1rem;
}

.form .btn-primary:hover {
    background: #234e75;
}

footer {
    background: #2d3748;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

footer nav {
    display: flex;
    gap: 20px;
}

footer a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-points {
        flex-direction: column;
        gap: 15px;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .form {
        padding: 25px;
    }
}