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

:root {
    --primary: #2c5f7d;
    --secondary: #4a90a4;
    --accent: #e8a87c;
    --dark: #1a3a4a;
    --light: #f4f7f9;
    --white: #ffffff;
    --text: #2d3748;
    --border: #d1dce5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.ad-notice {
    font-size: 11px;
    color: #718096;
    padding: 4px 12px;
    background: #edf2f7;
    border-radius: 4px;
    margin: 0 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

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

.hero-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 100px 0;
    margin-top: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

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

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,168,124,0.4);
}

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

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

.section {
    padding: 80px 0;
}

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

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    flex: 1;
    min-width: 300px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

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

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

.card p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .card-image {
    width: calc(100% + 72px);
    margin: -36px -36px 24px -36px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: var(--light);
}

.service-card .card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.features-list {
    list-style: none;
    margin: 24px 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: #4a5568;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
}

.stats-section {
    background: var(--white);
    border-radius: 20px;
    padding: 80px 40px;
    margin: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: #718096;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-card {
    flex: 0 0 calc(33.333% - 24px);
    min-width: 280px;
    text-align: center;
}

.team-photo {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--light);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.team-card p {
    color: #718096;
}

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    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);
}

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

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 60px;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card p {
    color: #4a5568;
    line-height: 1.9;
}

footer {
    background: var(--dark);
    color: #cbd5e0;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    text-align: center;
    font-size: 14px;
    color: #a0aec0;
}

.disclaimer {
    background: #fff3e0;
    border-left: 4px solid var(--accent);
    padding: 24px 28px;
    margin: 40px 0;
    border-radius: 8px;
    font-size: 14px;
    color: #5d4037;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 28px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    color: var(--text);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

.btn-reject {
    background: #e2e8f0;
    color: var(--text);
}

.legal-content {
    background: var(--white);
    border-radius: 12px;
    padding: 60px;
    margin: 40px 0;
    line-height: 1.9;
}

.legal-content h2 {
    color: var(--dark);
    font-size: 32px;
    margin: 48px 0 24px 0;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--dark);
    font-size: 24px;
    margin: 36px 0 16px 0;
}

.legal-content p {
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 28px;
}

.legal-content ul li {
    margin-bottom: 12px;
    color: #4a5568;
}

.thanks-card {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 80px 60px;
    max-width: 700px;
    margin: 80px auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: var(--white);
}

.thanks-card h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
}

.thanks-card p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    nav ul {
        gap: 20px;
        font-size: 14px;
    }

    .card {
        flex: 1 1 100%;
    }

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

    .form-card {
        padding: 40px 28px;
    }

    .legal-content {
        padding: 40px 28px;
    }
}

@media (max-width: 640px) {
    .hero-card {
        padding: 60px 0;
    }

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

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

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

    .ad-notice {
        margin: 12px 0 0 0;
        width: 100%;
        text-align: center;
    }
}