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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
}

.nav-right a {
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #e74c3c;
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.hero-right {
    background: #2c3e50;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #667eea;
    font-weight: 600;
    border: 2px solid #667eea;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.cta-large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

/* Intro Section - Reverse Split */
.intro-split {
    display: flex;
    min-height: 70vh;
}

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

.intro-left,
.intro-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-left {
    background: #ecf0f1;
}

.intro-right h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-right p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Value Cards */
.value-cards {
    display: flex;
    gap: 2rem;
    padding: 5rem 5%;
    background: #ffffff;
}

.card-item {
    flex: 1;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    transition: transform 0.3s;
}

.card-item:hover {
    transform: translateY(-8px);
}

.card-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Method Section - Split */
.method-split {
    display: flex;
    min-height: 80vh;
}

.method-left,
.method-right {
    flex: 1;
}

.method-left {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #34495e;
    color: #ffffff;
}

.method-left h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.method-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.method-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.method-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.method-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.3rem;
}

.method-right {
    background: #2c3e50;
}

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

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    display: block;
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Services Section */
.services-split {
    padding: 5rem 5%;
    background: #ecf0f1;
}

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

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #e74c3c;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #5568d3;
}

/* Form Section - Split */
.form-split {
    display: flex;
    min-height: 70vh;
}

.form-left,
.form-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left {
    background: #2c3e50;
    color: #ffffff;
}

.form-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-left p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.form-right {
    background: #34495e;
}

.contact-form {
    max-width: 500px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form select {
    cursor: pointer;
}

.contact-form option {
    background: #34495e;
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.final-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.final-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-col p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #e74c3c;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: #27ae60;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    background: #c0392b;
    transform: scale(1.05);
}

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

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

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Page Sections */
.about-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

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

.about-left,
.about-right {
    flex: 1;
    padding: 4rem 5%;
}

.about-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.about-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-right img {
    width: 100%;
    border-radius: 12px;
}

.mission-split {
    display: flex;
    background: #ecf0f1;
}

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

.mission-left,
.mission-right {
    flex: 1;
    padding: 4rem 5%;
}

.mission-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.mission-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.mission-left img {
    width: 100%;
    border-radius: 12px;
}

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

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

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

.team-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-card p {
    font-size: 0.95rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.bio {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Stats Section */
.stats-split {
    display: flex;
    min-height: 70vh;
}

.stats-left,
.stats-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-left {
    background: #2c3e50;
    color: #ffffff;
}

.stats-left h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.stats-right {
    background: #34495e;
}

.stats-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.cta-about h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Services Page - Intro Split */
.services-intro-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.services-intro-split .intro-left {
    background: #ecf0f1;
}

/* Service Detail Sections */
.services-detailed {
    padding: 3rem 0;
    background: #ffffff;
}

.service-detail {
    display: flex;
    min-height: 70vh;
    margin-bottom: 3rem;
}

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

.detail-content,
.detail-image {
    flex: 1;
    padding: 4rem 5%;
}

.detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.featured-price {
    color: #667eea;
}

.detail-content h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.detail-content li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.detail-image {
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-header,
.comparison-row {
    display: flex;
}

.comparison-header {
    background: #667eea;
    color: #ffffff;
    font-weight: 600;
}

.comparison-header div,
.comparison-row div {
    flex: 1;
    padding: 1.2rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-header div:first-child,
.comparison-row div:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-row {
    border-bottom: 1px solid #ecf0f1;
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 5%;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

.guarantee-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

.cta-services h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Contact Page */
.contact-split {
    display: flex;
    min-height: 60vh;
}

.contact-left,
.contact-right {
    flex: 1;
    padding: 4rem 5%;
}

.contact-left h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #667eea;
    font-weight: 600;
}

.info-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.info-block a {
    color: #e74c3c;
    transition: opacity 0.3s;
}

.info-block a:hover {
    opacity: 0.8;
}

.contact-right {
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-right img {
    width: 100%;
    border-radius: 12px;
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Map Section */
.map-section {
    padding: 5rem 5%;
    background: #ecf0f1;
}

.map-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    padding: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.map-overlay p {
    font-size: 1.2rem;
    margin: 0;
}

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

.cta-contact h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 0.8rem;
    line-height: 1.7;
}

.thanks-icon {
    font-size: 6rem;
    margin-top: 2rem;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Next Steps */
.next-steps {
    padding: 5rem 5%;
    background: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Prepare Section */
.prepare-section {
    padding: 5rem 5%;
    background: #ecf0f1;
}

.prepare-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.prepare-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
}

.prepare-list {
    padding-left: 2rem;
}

.prepare-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Resources Section */
.resources-section {
    padding: 5rem 5%;
    background: #ffffff;
    text-align: center;
}

.resources-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.resources-section > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

.resources-grid {
    display: flex;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.resource-card p {
    font-size: 1.05rem;
    color: #555;
}

/* Social Proof */
.social-proof {
    padding: 5rem 5%;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.social-proof h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-proof p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

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

.cta-thanks h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.update-date {
    font-size: 1rem;
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

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

.legal-page li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.legal-page a {
    color: #667eea;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #5568d3;
}

.cookie-preferences {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.cookie-preferences h2 {
    margin-top: 0;
}

#cookieStatus {
    font-weight: 600;
    font-size: 1.1rem;
}

#resetCookies {
    margin-top: 1rem;
}

.acceptance-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #ecf0f1;
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .method-split,
    .form-split,
    .about-split,
    .mission-split,
    .stats-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

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

    .value-cards,
    .testimonial-grid,
    .footer-content,
    .steps-grid,
    .resources-grid {
        flex-direction: column;
    }

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

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

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

    .team-card {
        flex: 1 1 100%;
        max-width: 300px;
    }

    .nav-right {
        gap: 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem !important;
    }

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

    .faq-item,
    .value-item {
        flex: 1 1 100%;
    }

    .comparison-header,
    .comparison-row {
        flex-direction: column;
    }

    .comparison-header div,
    .comparison-row div {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}
