/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-cookie-accept {
    background: #2ecc71;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3c72;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1e3c72;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e3c72;
    transition: width 0.3s ease;
}

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

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

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Intro Section */
.intro-section {
    background: #f8f9fa;
}

/* Insight Section */
.insight-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
}

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

.centered-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.centered-text {
    font-size: 1.25rem;
    text-align: center;
    opacity: 0.95;
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.15rem;
    color: #555;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.service-card.featured {
    border: 3px solid #2ecc71;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2ecc71;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    color: #2ecc71;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-body p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

/* Buttons */
.btn-select-service,
.btn-submit,
.cta-primary,
.btn-cta-large,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-select-service:hover,
.btn-submit:hover,
.cta-primary:hover,
.btn-cta-large:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #1e3c72;
    border: 2px solid #1e3c72;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1e3c72;
    color: #ffffff;
}

.cta-inline {
    color: #667eea;
    font-weight: 600;
    text-decoration: underline;
}

.cta-inline:hover {
    color: #764ba2;
}

/* Trust Section */
.trust-section {
    background: #f8f9fa;
}

.testimonial {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #1e3c72;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group label {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group a {
    color: #667eea;
    text-decoration: underline;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.benefits-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-item p {
    color: #555;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.7;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #667eea;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #2ecc71;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.4);
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Story */
.about-story {
    background: #ffffff;
}

/* Mission Section */
.mission-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 700;
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 3rem;
    font-weight: 700;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid #667eea;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #555;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
}

.stats-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #2ecc71;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-card.featured-service {
    border: 3px solid #2ecc71;
    position: relative;
}

.service-detail-card.premium-service {
    border: 3px solid #f39c12;
}

.service-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2ecc71;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 10;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-price {
    font-size: 2.5rem;
    color: #2ecc71;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.detailed-features {
    margin-bottom: 2rem;
}

.detailed-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.detailed-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

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

/* Comparison Section */
.comparison-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 3rem;
    font-weight: 700;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-card h3 {
    font-size: 1.25rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.comparison-card p {
    color: #555;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Contact Main */
.contact-main {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-detail-item h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-detail-item p {
    color: #555;
    line-height: 1.7;
}

.contact-detail-item a {
    color: #667eea;
    font-weight: 600;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.response-time {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Location Section */
.location-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.location-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 3rem;
    font-weight: 700;
}

.location-info {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-text p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.location-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.location-text li {
    color: #555;
    margin-bottom: 0.5rem;
}

.location-placeholder {
    flex: 1;
}

.location-placeholder img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #1e3c72;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-page {
    padding: 5rem 2rem;
    background: #f8f9fa;
    min-height: 70vh;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 700;
}

.thanks-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-main-text {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2ecc71;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-item p {
    color: #555;
    line-height: 1.6;
}

.thanks-info-box {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
    text-align: left;
}

.thanks-info-box h3 {
    font-size: 1.25rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-info-box ul {
    list-style: disc;
    margin-left: 2rem;
}

.thanks-info-box li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

/* Legal Page */
.legal-page {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.legal-page h1 {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 800;
}

.last-updated {
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-page p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style: disc;
}

.legal-page ol li {
    list-style: decimal;
}

.contact-box {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.legal-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.legal-navigation a {
    color: #667eea;
    font-weight: 600;
    margin: 0 1rem;
}

.legal-navigation a:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-table thead {
    background: #1e3c72;
    color: #ffffff;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-settings-section {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
    border: 2px solid #ffc107;
}

.cookie-settings-section h2 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 700;
}

/* Services Intro Section */
.services-intro-section {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

.services-intro-section h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-left {
        padding: 3rem 1.5rem;
    }

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

    .hero-subtext {
        font-size: 1.1rem;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .services-grid-split {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

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

    .benefit-item {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

    .service-detail-image {
        min-height: 300px;
    }

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

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

    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .location-info {
        flex-direction: column;
    }

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

    .step-item {
        flex: 1 1 100%;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        font-size: 0.9rem;
    }

    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content-left h1 {
        font-size: 1.75rem;
    }

    .split-content h2,
    .centered-heading,
    .services-intro h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: none;
    }

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