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

:root {
    --primary-color: #2C5F8D;
    --secondary-color: #F4A261;
    --accent-color: #E76F51;
    --dark-text: #1A1A2E;
    --light-text: #4A5568;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --success-color: #48BB78;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--bg-light);
}

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

header {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
}

.hero-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4570 100%);
    border-radius: 24px;
    padding: 80px 40px;
    margin: 40px auto;
    max-width: 1200px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #d15d43;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 16px;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px auto;
    max-width: 1200px;
}

.card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.card p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 24px;
    margin: 16px 0;
}

.section {
    padding: 60px 20px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 48px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--light-text);
    font-size: 15px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 16px;
    font-size: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-text);
}

.form-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.stats-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 16px;
    padding: 48px 32px;
    color: white;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    min-width: 180px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-card {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 60px auto;
    max-width: 900px;
    text-align: center;
    color: white;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.image-card {
    border-radius: 16px;
    overflow: hidden;
    margin: 32px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--success-color);
    color: white;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

footer {
    background: var(--dark-text);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.about-header {
    background: var(--primary-color);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.content-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 900px;
    margin: -40px auto 40px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    position: relative;
}

.content-section {
    margin-bottom: 32px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.content-section h3 {
    font-size: 24px;
    margin: 24px 0 12px;
    color: var(--primary-color);
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    margin: 20px 0;
    border-left: 6px solid var(--accent-color);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.contact-info-card p {
    color: var(--light-text);
    margin-bottom: 8px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.thanks-card p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 32px;
}

.policy-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.policy-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.policy-content h2 {
    font-size: 28px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

.policy-content p {
    color: var(--light-text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.policy-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.policy-content ul li {
    color: var(--light-text);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .card-grid {
        flex-direction: column;
    }

    .feature-card {
        flex: 1 1 100%;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 12px;
    }

    .cookie-banner {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
}
