:root {
    --primary: #0d2137;
    --secondary: #1a4d7c;
    --accent: #e8a83c;
    --light: #f4f7fa;
    --dark: #0a1623;
    --text: #2c3e50;
    --text-light: #6c7a89;
    --white: #ffffff;
    --success: #27ae60;
    --border: #dce3eb;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

/* Navigation */
.nav-wrapper {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

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

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero 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: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 480px;
}

.hero-visual {
    flex: 1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%230d2137" width="800" height="600"/><circle cx="400" cy="300" r="150" fill="%231a4d7c" opacity="0.5"/><rect x="300" y="200" width="200" height="200" fill="%23e8a83c" opacity="0.3" rx="10"/><path d="M350 250 L450 250 L450 350 L350 350 Z" stroke="%23fff" stroke-width="3" fill="none"/><circle cx="400" cy="300" r="30" fill="%23fff" opacity="0.8"/><rect x="380" y="360" width="40" height="20" fill="%23fff" opacity="0.6" rx="3"/></svg>') center/cover no-repeat;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(13,33,55,0.3) 0%, transparent 100%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #d69a35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,168,60,0.35);
}

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

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
}

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

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

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

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

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-image.pattern-1 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 500"><rect fill="%231a4d7c" width="600" height="500"/><rect x="50" y="100" width="200" height="300" fill="%230d2137" rx="15"/><rect x="70" y="130" width="160" height="100" fill="%23e8a83c" opacity="0.8" rx="5"/><circle cx="150" cy="320" r="40" fill="%23fff" opacity="0.3"/><rect x="100" y="380" width="100" height="10" fill="%23fff" opacity="0.5" rx="5"/><rect x="350" y="150" width="180" height="200" fill="%23fff" opacity="0.1" rx="10"/><path d="M400 200 L480 200 L480 280 L400 280 Z" stroke="%23e8a83c" stroke-width="2" fill="none"/></svg>') center/cover no-repeat;
}

.split-image.pattern-2 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 500"><rect fill="%23f4f7fa" width="600" height="500"/><rect x="100" y="80" width="180" height="120" fill="%230d2137" rx="8"/><rect x="320" y="80" width="180" height="120" fill="%231a4d7c" rx="8"/><rect x="100" y="220" width="400" height="60" fill="%23e8a83c" opacity="0.3" rx="5"/><circle cx="300" cy="380" r="80" fill="%230d2137" opacity="0.1"/><path d="M260 350 L340 350 L340 410 L260 410 Z" fill="%23e8a83c" rx="5"/><rect x="270" y="360" width="60" height="40" fill="%23fff" rx="3"/></svg>') center/cover no-repeat;
}

.split-image.pattern-3 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 500"><rect fill="%230d2137" width="600" height="500"/><rect x="50" y="50" width="500" height="400" fill="%231a4d7c" opacity="0.3" rx="20"/><circle cx="200" cy="200" r="60" stroke="%23e8a83c" stroke-width="4" fill="none"/><circle cx="200" cy="200" r="30" fill="%23e8a83c"/><rect x="350" y="150" width="150" height="100" fill="%23fff" opacity="0.1" rx="10"/><path d="M380 180 L470 180 M380 210 L450 210 M380 230 L420 230" stroke="%23fff" stroke-width="2" opacity="0.5"/><rect x="100" y="350" width="400" height="50" fill="%23e8a83c" opacity="0.2" rx="25"/></svg>') center/cover no-repeat;
}

.section-label {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

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

.section-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* Services Grid */
.services-section {
    padding: 100px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

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

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

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

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* Features List */
.features-section {
    padding: 100px 0;
}

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

.features-content {
    flex: 1;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

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

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

.feature-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.features-visual {
    flex: 1;
    min-height: 450px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 450"><rect fill="%23f4f7fa" width="500" height="450" rx="20"/><rect x="50" y="50" width="180" height="150" fill="%230d2137" rx="10"/><rect x="270" y="50" width="180" height="150" fill="%231a4d7c" rx="10"/><rect x="50" y="230" width="400" height="80" fill="%23e8a83c" opacity="0.2" rx="10"/><circle cx="100" cy="270" r="25" fill="%23e8a83c"/><rect x="140" y="255" width="280" height="10" fill="%230d2137" opacity="0.3" rx="5"/><rect x="140" y="275" width="200" height="8" fill="%230d2137" opacity="0.2" rx="4"/><rect x="50" y="340" width="120" height="80" fill="%230d2137" opacity="0.5" rx="8"/><rect x="190" y="340" width="120" height="80" fill="%231a4d7c" opacity="0.5" rx="8"/><rect x="330" y="340" width="120" height="80" fill="%23e8a83c" opacity="0.5" rx="8"/></svg>') center/contain no-repeat;
    border-radius: 20px;
}

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

.cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 35px;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent);
    font-family: Georgia, serif;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--primary);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Form Section */
.form-section {
    padding: 100px 0;
}

.form-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-content {
    flex: 1;
}

.form-wrapper {
    flex: 1;
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232,168,60,0.15);
}

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

.form-submit {
    margin-top: 10px;
}

/* Contact Info */
.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: 10px;
}

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

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

.contact-details h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
}

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

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 8px 30px rgba(232,168,60,0.4);
}

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

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    min-height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 400"><rect fill="%230d2137" width="500" height="400" rx="15"/><rect x="50" y="50" width="180" height="130" fill="%231a4d7c" rx="8"/><rect x="270" y="50" width="180" height="130" fill="%23e8a83c" opacity="0.3" rx="8"/><circle cx="140" cy="280" r="60" stroke="%23e8a83c" stroke-width="3" fill="none"/><circle cx="140" cy="280" r="30" fill="%23e8a83c" opacity="0.5"/><rect x="250" y="220" width="200" height="120" fill="%23fff" opacity="0.1" rx="10"/><path d="M280 260 L420 260 M280 290 L380 290 M280 320 L350 320" stroke="%23fff" stroke-width="2" opacity="0.5"/></svg>') center/cover no-repeat;
    border-radius: 15px;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #d69a35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

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

.value-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

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

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

.team-member {
    width: calc(25% - 23px);
    min-width: 220px;
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
}

.team-member h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Page */
.services-intro {
    padding: 80px 0;
    text-align: center;
}

.services-detailed {
    padding: 0 0 100px;
}

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-visual {
    flex: 1;
    min-height: 300px;
    background: var(--light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-detail p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.detail-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
}

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

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
}

.contact-map {
    height: 300px;
    background: var(--light);
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 40px 0 20px;
}

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

.legal-content p {
    color: var(--text);
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
    list-style: disc;
}

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

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

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

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success) 0%, #219a52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-content h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.thanks-service {
    background: var(--light);
    padding: 20px 30px;
    border-radius: 10px;
    margin: 30px 0;
    display: inline-block;
}

.thanks-service span {
    color: var(--text-light);
}

.thanks-service strong {
    color: var(--primary);
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
}

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

    .hero-content {
        padding: 60px 40px;
    }

    .hero-visual {
        min-height: 350px;
    }

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

    .split-text {
        padding: 60px 30px;
    }

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

    .features-flex,
    .form-flex,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .features-visual,
    .about-image {
        order: -1;
    }

    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-card {
        width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .form-wrapper {
        padding: 30px;
    }

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

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

    .sticky-cta {
        bottom: 80px;
        right: 15px;
    }

    .sticky-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
