:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #ed8936;
    --secondary-light: #f6ad55;
    --dark: #1a202c;
    --gray-900: #171923;
    --gray-800: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #718096;
    --gray-500: #a0aec0;
    --gray-400: #cbd5e0;
    --gray-300: #e2e8f0;
    --gray-200: #edf2f7;
    --gray-100: #f7fafc;
    --white: #ffffff;
    --success: #38a169;
    --warning: #dd6b20;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1400px;
}

/* Ad Disclosure Banner */
.ad-disclosure {
    background-color: var(--gray-200);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-300);
}

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

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: var(--gray-100);
}

.hero-image {
    flex: 1;
    background-color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

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

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

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Split Sections */
.section-split {
    display: flex;
    min-height: 600px;
}

.section-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-image {
    flex: 1;
    background-color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 16px;
    color: var(--gray-700);
}

/* Services Section */
.section-services {
    padding: 100px 0;
    background-color: var(--gray-100);
}

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

.section-header .section-badge {
    margin-bottom: 16px;
}

.section-header .section-title {
    margin-bottom: 16px;
}

.section-header .section-text {
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    flex: 1 1 calc(33.333% - 30px);
    max-width: 380px;
    min-width: 300px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
}

.price-period {
    font-size: 14px;
    color: var(--gray-500);
}

.service-features {
    margin-bottom: 24px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.service-feature::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.service-btn {
    width: 100%;
    text-align: center;
}

/* Testimonials */
.section-testimonials {
    padding: 100px 0;
    background-color: var(--primary);
}

.section-testimonials .section-title {
    color: var(--white);
}

.section-testimonials .section-text {
    color: var(--gray-300);
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    flex: 1 1 calc(50% - 30px);
    max-width: 580px;
    min-width: 300px;
}

.testimonial-content {
    font-size: 18px;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--gray-300);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

.author-role {
    font-size: 14px;
    color: var(--gray-500);
}

/* Process Section */
.section-process {
    padding: 100px 0;
    background-color: var(--white);
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1 1 calc(25% - 40px);
    min-width: 240px;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    color: var(--gray-300);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-white:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
}

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

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

/* Contact Form */
.section-contact {
    padding: 100px 0;
    background-color: var(--gray-100);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-form-wrapper {
    flex: 1;
    min-width: 400px;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

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

.contact-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 500;
}

/* Form Styles */
.form {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-label span {
    color: var(--secondary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    color: var(--gray-800);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-checkbox-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

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

.form-submit {
    width: 100%;
    margin-top: 8px;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 0 30px;
}

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

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 350px;
}

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

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--gray-400);
}

.footer-legal a:hover {
    color: var(--secondary);
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--gray-600);
}

.cookie-reject:hover {
    background-color: var(--gray-800);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-300);
}

.page-breadcrumb a {
    color: var(--gray-300);
}

.page-breadcrumb a:hover {
    color: var(--white);
}

/* Content Pages */
.content-page {
    padding: 80px 0;
}

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

.content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.content-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.content-wrapper p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.content-wrapper li {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

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

/* About Page */
.about-intro {
    padding: 80px 0;
}

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

.about-content {
    flex: 1;
    min-width: 400px;
}

.about-image {
    flex: 1;
    min-width: 400px;
    background-color: var(--gray-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

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

.value-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 72px;
    height: 72px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

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

.team-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--gray-300);
    margin: 0 auto 20px;
    overflow: hidden;
}

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

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--gray-500);
}

/* Services Page */
.services-hero {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.services-list {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-200);
    flex-wrap: wrap;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content {
    flex: 1;
    min-width: 400px;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: var(--gray-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-price-large {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 24px 0;
}

.service-price-large .price-amount {
    font-size: 36px;
}

/* Contact Page */
.contact-page-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-main {
    flex: 2;
    min-width: 400px;
}

.contact-sidebar {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    background-color: var(--gray-300);
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

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

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

.thanks-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

.thanks-service {
    background-color: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.thanks-service-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.thanks-service-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

/* Disclaimer */
.disclaimer {
    background-color: var(--gray-200);
    padding: 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-top: 40px;
}

.disclaimer-title {
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px;
    }

    .hero-image {
        min-height: 400px;
    }

    .section-split {
        flex-direction: column;
    }

    .section-split.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 40px;
    }

    .split-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

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

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

    .process-step {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        min-width: 100%;
    }

    .about-content,
    .about-image,
    .service-detail-content,
    .service-detail-image,
    .contact-main,
    .contact-sidebar {
        min-width: 100%;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 30px 20px;
    }

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

    .split-content {
        padding: 30px 20px;
    }

    .form {
        padding: 24px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
