/* 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: #1a1a1a;
    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;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-accept {
    background-color: #0066cc;
    color: white;
}

.btn-accept:hover {
    background-color: #0052a3;
}

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

.btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 550px;
}

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

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-inline {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background-color: #0066cc;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.cta-secondary {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: white;
}

.cta-inline {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 30px;
    font-size: 0.95rem;
}

.cta-inline:hover {
    background-color: #333;
}

/* Intro Split Section (Reversed) */
.intro-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.2;
}

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

.intro-visual {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Value Cards Section */
.value-cards {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.value-cards h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.cards-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    color: #0066cc;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Services Preview Section */
.services-preview {
    display: flex;
    min-height: 700px;
    align-items: stretch;
}

.split-bg {
    background: linear-gradient(to right, #ffffff 50%, #1a1a1a 50%);
}

.services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.services-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.service-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.services-visual {
    flex: 1;
    overflow: hidden;
    position: relative;
    background-color: #1a1a1a;
}

.services-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Process Split Section */
.process-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
    background-color: #0066cc;
}

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

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

.process-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    min-width: 50px;
}

.step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.process-visual {
    flex: 1;
    overflow: hidden;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author strong {
    font-size: 1rem;
    color: #1a1a1a;
}

.author span {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Split Section */
.cta-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

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

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.cta-visual {
    flex: 1;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-col ul a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: #0066cc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.sticky-btn {
    display: block;
    padding: 16px 30px;
    background-color: #0066cc;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 70px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.25rem;
    color: #555;
}

/* About Split Section */
.about-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.about-visual {
    flex: 1;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0066cc;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Technology Split Section */
.technology-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.tech-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #1a1a1a;
    color: white;
}

.tech-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.tech-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.tech-visual {
    flex: 1;
    overflow: hidden;
}

.tech-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

/* Commitment Split Section */
.commitment-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.commitment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.commitment-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.commitment-visual {
    flex: 1;
    overflow: hidden;
}

.commitment-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Intro Section */
.services-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Services Detailed Section */
.services-detailed {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-detailed h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
}

.service-card-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-details {
    flex: 1;
    padding: 50px;
}

.service-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.service-duration {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
}

.service-savings {
    font-size: 1rem;
    color: #0066cc;
    font-weight: 600;
    margin-top: 15px;
}

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

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

/* Pricing Info Section */
.pricing-info {
    padding: 80px 0;
    background-color: #ffffff;
}

.pricing-info h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Booking CTA Section */
.booking-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

.booking-cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.booking-cta p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Split Section */
.contact-split {
    display: flex;
    gap: 60px;
    align-items: stretch;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
    padding: 40px;
}

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

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

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc;
}

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

.info-block a {
    color: #0066cc;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.95rem;
    color: #999;
    margin-top: 8px;
}

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

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background-color: #e9ecef;
    border-radius: 12px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-overlay {
    text-align: center;
}

.map-overlay p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    text-align: center;
    background-color: #ffffff;
}

.contact-cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #555;
}

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

/* Thanks Hero Section */
.thanks-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    margin-top: 70px;
}

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

.success-icon {
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-confirmation {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-confirmation p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.confirmation-note {
    font-size: 0.95rem;
    color: #666;
}

/* Next Steps Section */
.next-steps {
    padding: 100px 0;
    background-color: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.step-time {
    font-size: 0.9rem;
    color: #0066cc;
    font-weight: 600;
}

/* Thanks Info Section */
.thanks-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list li a {
    font-size: 1.05rem;
    color: #0066cc;
    font-weight: 600;
}

.info-list li a:hover {
    text-decoration: underline;
}

.info-visual {
    flex: 1;
}

.info-box {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
}

.info-box a {
    color: #0066cc;
    font-weight: 600;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Preparation Tips Section */
.preparation-tips {
    padding: 100px 0;
    background-color: #ffffff;
}

.preparation-tips h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.preparation-tips .section-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.tip-card {
    flex: 1;
    min-width: 250px;
    padding: 30px 25px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-top: 4px solid #0066cc;
}

.tip-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.tip-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Legal Page Styles */
.legal-page {
    padding: 80px 0 100px;
    background-color: #ffffff;
    margin-top: 70px;
}

.legal-page h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #0066cc;
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .about-split,
    .services-preview,
    .process-split,
    .cta-split,
    .technology-split,
    .commitment-split,
    .service-card-split,
    .contact-split,
    .intro-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .process-split.reverse,
    .technology-split.reverse,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .about-content,
    .services-content,
    .process-content,
    .cta-content,
    .tech-content,
    .commitment-content,
    .service-details,
    .contact-info {
        padding: 60px 30px;
    }

    .hero-visual,
    .intro-visual,
    .about-visual,
    .services-visual,
    .process-visual,
    .cta-visual,
    .tech-visual,
    .commitment-visual,
    .service-image {
        min-height: 400px;
    }

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

    .intro-content h2,
    .about-content h2,
    .services-content h2,
    .process-content h2,
    .tech-content h2,
    .commitment-content h2 {
        font-size: 2rem;
    }

    .value-cards h2,
    .testimonials-section h2,
    .cta-section h2,
    .booking-section h2,
    .philosophy-section h2,
    .team-section h2,
    .pricing-info h2,
    .booking-cta h2,
    .faq-section h2,
    .contact-cta h2,
    .thanks-hero h1,
    .next-steps h2,
    .preparation-tips h2,
    .services-detailed h2 {
        font-size: 2.2rem;
    }

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

    .cards-grid,
    .testimonials-grid,
    .philosophy-grid,
    .team-stats,
    .info-grid,
    .steps-grid,
    .tips-grid {
        flex-direction: column;
    }

    .booking-form {
        padding: 40px 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .contact-split,
    .info-split {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .cta-primary,
    .cta-secondary {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .service-details h3 {
        font-size: 1.6rem;
    }

    .service-price {
        font-size: 1.6rem;
    }

    .legal-page h1 {
        font-size: 2.2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
