:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #c53030;
    --accent-hover: #9b2c2c;
    --neutral-100: #f7fafc;
    --neutral-200: #edf2f7;
    --neutral-300: #e2e8f0;
    --neutral-600: #4a5568;
    --neutral-800: #1a202c;
    --white: #ffffff;
    --shadow: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius: 6px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-800);
    background-color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

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

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

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

.ad-disclosure {
    background-color: var(--accent);
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 500;
}

.header-main {
    padding: 18px 0;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    font-weight: 500;
    color: var(--neutral-600);
    position: relative;
    padding: 5px 0;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: var(--neutral-300);
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero p {
    font-size: 19px;
    line-height: 1.65;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 90px 0;
}

.section-alt {
    background-color: var(--neutral-100);
}

.section-dark {
    background-color: var(--primary);
    color: var(--white);
}

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

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 17px;
    color: var(--neutral-600);
    max-width: 620px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: var(--neutral-300);
}

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    flex: 1 1 calc(33.333% - 19px);
    min-width: 300px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    background-color: var(--neutral-200);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 21px;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--neutral-600);
    margin-bottom: 18px;
    font-size: 15px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--neutral-200);
}

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

.price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--neutral-600);
}

/* Features */
.features-row {
    display: flex;
    align-items: center;
    gap: 70px;
}

.features-row.reverse {
    flex-direction: row-reverse;
}

.features-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--neutral-200);
}

.features-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.features-content {
    flex: 1;
}

.features-content h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 22px;
}

.features-content p {
    color: var(--neutral-600);
    margin-bottom: 28px;
    font-size: 16px;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--neutral-600);
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.section-dark .stat-number {
    color: var(--white);
}

.stat-label {
    font-size: 16px;
    color: var(--neutral-600);
}

.section-dark .stat-label {
    color: var(--neutral-300);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: var(--neutral-200);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: var(--neutral-600);
    font-style: italic;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--neutral-600);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 18px;
    color: var(--neutral-300);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Forms */
.form-section {
    background-color: var(--neutral-100);
    padding: 80px 0;
}

.form-container {
    max-width: 680px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--transition);
    background-color: var(--white);
}

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

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    min-width: 220px;
}

/* About Page */
.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-intro-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--neutral-200);
}

.about-intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-intro-content p {
    color: var(--neutral-600);
    margin-bottom: 20px;
    font-size: 16px;
}

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

.team-member {
    flex: 1 1 calc(25% - 23px);
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--neutral-200);
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member span {
    font-size: 14px;
    color: var(--accent);
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-info p {
    color: var(--neutral-600);
    margin-bottom: 35px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--neutral-200);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.contact-text h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
    color: var(--neutral-600);
    font-size: 15px;
}

.contact-map {
    flex: 1;
    min-height: 450px;
    background-color: var(--neutral-200);
    border-radius: var(--radius);
    overflow: hidden;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--neutral-100);
}

.thanks-content {
    max-width: 580px;
    padding: 60px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 90px;
    height: 90px;
    background-color: #48bb78;
    border-radius: 50%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 18px;
}

.thanks-content p {
    color: var(--neutral-600);
    margin-bottom: 12px;
    font-size: 17px;
}

.thanks-service {
    background-color: var(--neutral-100);
    padding: 18px 25px;
    border-radius: var(--radius);
    margin: 28px 0;
    font-weight: 600;
    color: var(--primary);
}

/* Legal Pages */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--neutral-200);
}

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

.legal-content p {
    color: var(--neutral-600);
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 18px 0;
    padding-left: 28px;
    color: var(--neutral-600);
}

.legal-content li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: var(--neutral-800);
    color: var(--neutral-300);
    padding: 70px 0 0;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
}

.disclaimer {
    background-color: var(--neutral-100);
    padding: 25px;
    border-radius: var(--radius);
    margin-top: 30px;
    font-size: 13px;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--neutral-800);
    color: var(--white);
    padding: 22px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
}

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

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

.cookie-reject {
    background-color: transparent;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-300);
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }

    .features-row,
    .features-row.reverse {
        flex-direction: column;
    }

    .about-intro {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }

    .nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

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

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

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

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

    .form-container {
        padding: 30px 20px;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}
