/* ============================================
   GLOBAL RESET & 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, 'Helvetica Neue', Arial, 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;
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

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

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

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

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

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

/* ============================================
   COOKIE BANNER
   ============================================ */

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

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

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

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #229954;
}

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

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

/* ============================================
   HERO SECTION - SPLIT SCREEN
   ============================================ */

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

/* ============================================
   CTA BUTTONS
   ============================================ */

.cta-primary,
.cta-secondary,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #27ae60;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}

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

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.cta-primary-large {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 6px 25px rgba(39,174,96,0.3);
}

.cta-primary-large:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39,174,96,0.4);
}

/* ============================================
   SPLIT SECTIONS
   ============================================ */

.intro-section,
.expertise-section,
.details-section {
    padding: 5rem 2rem;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

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

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-highlight {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    padding: 2rem;
}

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

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

.price {
    font-size: 1.8rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #229954;
    transform: translateX(5px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-section .section-header h2 {
    color: #ffffff;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background-color: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #27ae60;
}

/* ============================================
   BOOKING FORM SECTION
   ============================================ */

.booking-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    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: #27ae60;
    box-shadow: 0 0 0 3px rgba(39,174,96,0.1);
}

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

.checkbox-group {
    flex-direction: row;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

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

.checkbox-group a {
    color: #27ae60;
    text-decoration: underline;
}

.btn-submit {
    padding: 1.2rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.3);
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #27ae60;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.8;
    color: #b0bec5;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0bec5;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b0bec5;
    font-size: 0.9rem;
}

/* ============================================
   PAGE HERO (for internal pages)
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

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

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-intro {
    padding: 5rem 2rem;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.philosophy-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.philosophy-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.philosophy-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    padding: 5rem 2rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.values-content {
    max-width: 1400px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: #27ae60;
    line-height: 1;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.journey-section {
    padding: 5rem 2rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #27ae60;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    flex: 1;
    text-align: right;
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.cta-box h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-intro {
    padding: 3rem 2rem;
}

.intro-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content-centered h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.intro-content-centered p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid #e1e8ed;
}

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

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

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-note {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 4px solid #27ae60;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.additional-services {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.extra-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

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

.extra-item p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.extra-price {
    font-size: 1.5rem;
    color: #27ae60;
    font-weight: 700;
}

.pricing-info {
    padding: 5rem 2rem;
}

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

.pricing-info-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.pricing-info-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pricing-includes {
    list-style: none;
    margin: 2rem 0;
}

.pricing-includes li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 5rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.7;
}

.contact-item a {
    color: #27ae60;
    text-decoration: underline;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #5a6c7d;
    font-style: italic;
    margin-top: 0.5rem;
}

.visit-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

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

.visit-info p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    color: #ffffff;
}

.map-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

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

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

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: inline-block;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 5rem 2rem;
}

.thanks-info {
    max-width: 900px;
    margin: 0 auto;
}

.info-box {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.info-box h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.step-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-reminder {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

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

.service-reminder p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-additional {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.additional-content {
    max-width: 1400px;
    margin: 0 auto;
}

.additional-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

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

.suggestion-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

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

.suggestion-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-contact {
    padding: 5rem 2rem;
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.contact-box h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.email-link {
    font-size: 1.3rem;
    color: #27ae60;
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
    padding: 3rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #27ae60;
    text-decoration: underline;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #5a6c7d;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .split-container,
    .service-detail-split,
    .contact-container {
        gap: 3rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

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

    .hero-text {
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

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

    .split-container,
    .split-container.reverse,
    .service-detail-split,
    .service-detail.reverse .service-detail-split,
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card,
    .extra-item,
    .philosophy-item {
        flex: 1 1 100%;
    }

    .suggestions-grid,
    .footer-content {
        flex-direction: column;
    }

    .section-header h2,
    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        padding-left: 50px;
    }

    .timeline-year {
        text-align: left;
    }

    .value-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }
}
