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

:root {
    --primary: #2c5f8d;
    --primary-dark: #1a4565;
    --accent: #e8925c;
    --text: #2d3436;
    --text-light: #636e72;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --border: #dfe6e9;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

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

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

.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav {
    display: flex;
    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);
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--bg-alt);
}

.hero-card {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

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

.hero-image {
    flex: 1;
    background: var(--bg-alt);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 40px var(--shadow);
}

.cta-primary {
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--shadow);
}

.intro-cards {
    padding: 80px 0;
    background: var(--bg);
}

.card-grid-three {
    display: flex;
    gap: 32px;
}

.card-grid-two {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.info-card {
    flex: 1;
    background: var(--bg);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    color: var(--primary);
    margin-bottom: 20px;
}

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

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.story-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
}

.insight-card {
    margin-top: 48px;
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.insight-text {
    padding: 40px;
}

.insight-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-preview {
    padding: 80px 0;
    background: var(--bg);
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.section-header-center p {
    font-size: 20px;
    color: var(--text-light);
}

.service-card {
    flex: 0 0 calc(50% - 16px);
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-alt);
}

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

.service-content {
    padding: 32px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--primary-dark);
}

.testimonial-cards {
    padding: 80px 0;
    background: var(--bg-alt);
}

.testimonial-cards h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--primary-dark);
}

.testimonial-card {
    flex: 1;
    background: var(--bg);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--primary-dark);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.form-section {
    padding: 80px 0;
    background: var(--bg);
}

.form-card {
    background: var(--bg-alt);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-dark);
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

.service-selected {
    background: var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 600;
    display: none;
}

.service-selected.active {
    display: block;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d67a42;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 146, 92, 0.3);
}

.disclaimer-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.disclaimer-card {
    background: #fff9f5;
    border: 1px solid #f0d4c3;
    padding: 32px;
    border-radius: 8px;
}

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

.disclaimer-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 69, 101, 0.97);
    color: white;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie.accept:hover {
    background: #d67a42;
}

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

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-info-card {
    background: var(--bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

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

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-detail p {
    color: var(--text);
    line-height: 1.6;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8eef3 0%, #f5f7fa 100%);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background: var(--bg-alt);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 32px var(--shadow);
}

.values-section {
    padding: 80px 0;
    background: var(--bg);
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--primary-dark);
}

.value-card {
    flex: 1;
    background: var(--bg-alt);
    padding: 36px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
    background: var(--bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text);
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8eef3 0%, #f5f7fa 100%);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    color: white;
}

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

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

.thanks-service {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

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

.btn-home:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

    .card-grid-three,
    .footer-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}