        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        .serv-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header matching your site style */
        .serv-hero-section {
            background: linear-gradient(174deg, #006f96 42%, #004a66 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .serv-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }

        .serv-hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .serv-hero-section h1 {
            font-size: 3.5em;
            font-weight: 700;
            text-shadow: 3px 6px 4px rgba(0, 0, 0, 0.3);
        }

        .serv-hero-section .subtitle {
            font-size: 1.4em;
            opacity: 0.95;
            font-weight: 300;
        }

        .serv-hero-description {
            max-width: 700px;
            margin: 0 auto 35px;
            font-size: 1.1em;
            opacity: 0.9;
        }

        .serv-cta-button {
            background: white;
            color: #0094c9;
            padding: 18px 40px;
            border: none;
            border-radius: 25px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 74, 102, 0.3);
        }

        .serv-cta-button:hover {
            transform: translateY(-2px);
            /* background: #006f96; */
            box-shadow: 0 8px 25px rgba(0, 74, 102, 0.4);
        }

        .serv-trust-badges {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .serv-trust-badge {
            font-size: 0.95em;
            opacity: 0.9;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Guarantee banner matching your style */
        .serv-guarantee-banner {
            background: linear-gradient(135deg, #005f7e 0%, #004a66 100%);
            color: white;
            padding: 25px;
            margin: 0;
            border-radius: 0;
            text-align: center;
            position: relative;
        }

        .serv-guarantee-banner h3 {
            margin-bottom: 10px;
            font-size: 1.3em;
        }

        .serv-guarantee-banner p {
            margin-bottom: 5px;
        }

        /* Section styling */
        /* .serv-section {
            padding: 40px 0;
        } */

        .serv-section {
            background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
            border-radius: 20px;
            padding: 20px;
            border: 2px solid #91d1dc;
        }

        .serv-section:nth-child(even) {
            background-color: #f0f9fb;
        }

        .serv-section-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 60px;
            color: #004a66;
            font-weight: 700;
        }

        .serv-section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 1.2em;
            color: #6c757d;
        }

        /* Two column layouts */
        .serv-two-column {
            /* display: grid; */
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            /* margin: 60px 0; */
        }

        .serv-two-column.reverse {
            direction: rtl;
        }

        .serv-two-column.reverse>* {
            direction: ltr;
        }


        .serv-column-content h2 {
            color: #006f96;
            margin-bottom: 25px;
            font-size: 2.5em;
            font-weight: 700;
            line-height: normal;
        
        }

        /* .serv-single-column .serv-column-content h2 {
            text-align: center;
        } */



        .serv-column-content h3 {
            color: #004a66;
            margin-bottom: 20px;
            font-size: 1.5em;
            font-weight: 600;
        }

        .serv-column-content p {
            margin-bottom: 20px;
            font-size: 1.1em;
            line-height: 1.7;
        }

        .serv-column-content ul,
        .serv-column-content ol {
            /* margin-left: 0px;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px; */

            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }



        .serv-column-content ul li,
        .serv-column-content ol li {
            background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
            border: 2px solid #91d1dc;
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            /* list-style: decimal; */
        }

        .serv-column-content li {
            margin-bottom: 8px;
            font-size: 1.1em;
            list-style: none !important;
            border: 1px solid #006f96;
            border-bottom: 5px solid #006f96;
            padding: 10px;
            border-radius: 10px;
            flex: 0 0 48%;
        }

        @media screen and (max-width: 768px){
            .serv-column-content li {
                flex: 0 0 100%;
            }
        }

        .serv-column-content li strong{
            display: block;
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #006f96
        }

        /* .serv-column-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            height: 400px;   
        } */

        .serv-column-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            height: 400px;
            justify-self: center;
            text-align: center;
            align-content: center;
        }

        .serv-single-column img {
            width: 100%;
            display: block;
            margin: 20px auto;
            filter: drop-shadow(2px 4px 6px #cacaca);
            border-radius: 20px;
        }

        /* .serv-column-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        } */

        .serv-column-image img {
            max-width: 100%;
            max-height: 100%;
        }

        /* Treatment highlight box */
        .serv-treatment-highlight {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #006f96;
            margin: 25px 0;
        }

        .serv-treatment-highlight h4 {
            color: #006f96;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .serv-treatment-item {
            margin-bottom: 15px;
        }

        .serv-treatment-item strong {
            color: #2c3e50;
        }

        /* Process steps */
        .serv-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .serv-process-step {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .serv-process-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 74, 102, 0.15);
        }

        .serv-step-number {
            background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-weight: 700;
            font-size: 1.2em;
        }

        .serv-process-step h3 {
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 1.3em;
        }

        /* Lesion grid */
        .serv-lesion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .serv-lesion-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .serv-lesion-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 74, 102, 0.15);
        }

        .serv-lesion-card-header {
            background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }

        .serv-lesion-card-header::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #004a66;
        }

        .serv-lesion-card-body {
            padding: 30px;
        }

        .serv-lesion-card h3 {
            margin-bottom: 15px;
            font-size: 1.4em;
            font-weight: 600;
        }

        /* Comparison table matching your style */
        .serv-comparison-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .serv-comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin: 40px 0;
        }

        .serv-comparison-header {
            background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .serv-comparison-header-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .serv-comparison-header h3 {
            font-size: 1.3em;
            font-weight: 700;
        }

        .serv-comparison-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 80px;
        }

        .serv-comparison-cell {
            padding: 25px 30px;
            border-bottom: 1px solid #f0f0f0;
        }

        .serv-comparison-cell:first-child {
            background: #f8f9fa;
            border-right: 1px solid #f0f0f0;
            font-weight: 600;
            color: #006f96;
            flex: 1;
        }

        .serv-comparison-cell:last-child {
            color: #6c757d;
            flex: 1;
        }

        /* Stats section */
        .serv-stats-highlight {
            text-align: center;
            background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
        }

        .serv-stats-highlight h3 {
            margin-bottom: 10px;
            font-size: 1.5em;
        }

        /* Pricing section matching your style */
        .serv-pricing-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .serv-pricing-table {
            background: white;
            border: 2px solid #006f96;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 74, 102, 0.15);
            margin: 40px auto;
            max-width: 500px;
            text-align: center;
        }

        .serv-pricing-header-main {
            background: #006f96;
            color: white;
            padding: 20px;
            font-size: 1.1em;
            font-weight: bold;
        }

        .serv-pricing-body {
            padding: 40px;
        }

        .serv-price-value {
            font-size: 3.5em;
            font-weight: 700;
            color: #004a66;
            margin-bottom: 20px;
        }

        .serv-pricing-includes {
            list-style: none;
            text-align: left;
            margin: 0 auto 30px;
            display: inline-block;
        }

        .serv-pricing-includes li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .serv-pricing-includes li::before {
            content: '✔';
            color: #28a745;
            margin-right: 10px;
            font-weight: bold;
        }


        /* Why choose features */
        .serv-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .serv-feature {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .serv-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 74, 102, 0.15);
        }

        .serv-feature-icon {
            font-size: 3em;
            margin-bottom: 20px;
            color: #006f96;
        }

        .serv-feature h3 {
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 1.3em;
        }

        /* Testimonial section */
        .serv-testimonial-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }

        .serv-testimonial {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .serv-testimonial::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 6em;
            color: #006f96;
            opacity: 0.2;
        }

        .serv-stars {
            color: #ffc107;
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .serv-testimonial-text {
            font-size: 1.3em;
            margin-bottom: 30px;
            font-style: italic;
            line-height: 1.6;
            color: #495057;
        }

        .serv-testimonial-author {
            font-weight: 700;
            font-size: 1.1em;
            color: #2c3e50;
        }

        .serv-testimonial-title {
            color: #6c757d;
            font-size: 0.95em;
            margin-top: 5px;
        }

        /* Accreditations */
        .serv-accreditations {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin: 60px 0;
            flex-wrap: wrap;
        }

        .serv-accreditation {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            width: 220px;
        }

        .serv-accreditation:hover {
            transform: translateY(-5px);
        }

        .serv-accreditation-logo {
            width: 100%;
            height: 80px;
            background: #f8f9fa;
            margin: 0 auto 15px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #004a66;
            font-size: 1.2em;
            border: 1px solid #e9ecef;
        }

        /* FAQ Section */
        .serv-faq-section {
            background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
            border-radius: 20px;
            padding: 20px;
            border: 2px solid #91d1dc;
        }

        .serv-faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #f0f0f0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

.serv-faq-question {
    padding: 25px 50px 25px 20px; /* more right padding for the + icon */
    background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.serv-faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.serv-faq-question.active:after {
    transform: translateY(-50%) rotate(45deg);
}

/* 📱 Fix for screens under 500px */
@media (max-width: 500px) {
    .serv-faq-question {
        padding: 18px 40px 18px 15px; /* smaller padding but enough space for + */
        font-size: 14px; /* smaller text so it doesn’t collide */
    }

    .serv-faq-question:after {
        right: 15px; /* bring + closer on mobile */
        font-size: 1.2em; /* slightly smaller icon */
    }
}


        .serv-faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease-out;
            background: #f8f9fa;
        }

        .serv-faq-answer.active {
            padding: 25px 30px;
            max-height: 250px;
        }

        /* Booking section */
        .serv-booking-section {
            background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
        }

        .serv-booking-form {
            background: white;
            padding: 50px;
            border-radius: 20px;
            max-width: 600px;
            margin: 50px auto;
            color: #333;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        .serv-form-group {
            margin-bottom: 25px;
            text-align: left;
        }

        .serv-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        .serv-form-group input,
        .serv-form-group select,
        .serv-form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1em;
            transition: border-color 0.3s ease;
        }

        .serv-form-group input:focus,
        .serv-form-group select:focus,
        .serv-form-group textarea:focus {
            border-color: #006f96;
            outline: none;
        }

        /* Footer */
        .serv-footer {
            background: #004a66;
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 20px;
        }

        .serv-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .serv-footer-col h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2em;
        }

        .serv-footer-col p,
        .serv-footer-col a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
        }

        .serv-footer-col a:hover {
            color: white;
        }

        .serv-footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .serv-hero-section h1 {
                font-size: 2.2em;
            }

            .serv-hero-section {
                padding: 60px 0;
                margin-bottom: 15px;
            }

            /* .serv-section {
                padding: 60px 0;
            } */

            .serv-section {
                background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
                border-radius: 20px;
                padding: 20px;
                border: 2px solid #91d1dc;
            }

            .serv-two-column {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .serv-trust-badges {
                gap: 20px;
                flex-direction: column;
                align-items: center;
            }

            .serv-comparison-cell:first-child {
                border-right: none;
                border-bottom: 1px solid #ddd;
            }

            .serv-accreditations {
                gap: 30px;
            }

            .serv-column-content h2{
                font-size: 1.8rem;
            }

            .serv-section-title{
                font-size: 2em;
                margin-bottom: 20px;
            }
        }


     
/* @media (max-width: 390px) {
  .call-header-cta .btn {
    padding: 0px !important;
   
  }


} */


/* Fix for mobile header button overlap */
/* Fix for mobile header button overlap - CORRECTED VERSION */

.mobile-toggle-cont {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}


.call-header-cta {
  flex-shrink: 0 !important;
  margin-right: 10px !important;
}


.call-header-cta .btn {
  padding: 8px 12px !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}


.menu-toggle {
  flex-shrink: 0 !important;
  padding: 8px !important;
  margin-left: 5px !important;
  border: none !important;
  background: transparent !important;
  font-size: 18px !important;
  cursor: pointer !important;
  z-index: 1000 !important;
}

.legal-content-block {
    max-width: 1200px;
    background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid #91d1dc;
    margin-bottom: 30px;
}

.legal-content-block h2 span {
    color: #004a66 !important;
    margin-bottom: 20px !important;
    font-size: 1em !important;
    font-weight: 600 !important;
}


@media (max-width: 600px) {
  .serv-hero-section p {
    display: none;
  }

  /* .legal-content-block {
    margin-left: 15px;
    margin-right: 15px;
  } */
}

@media (max-width: 480px) {
  .call-header-cta .btn {
    padding: 6px 8px !important;
    font-size: 12px !important;
  }
  
  .call-header-cta .btn i {
    margin-right: 4px !important;
  }
  
  .menu-toggle {
    padding: 6px !important;
    font-size: 16px !important;
  }
}


@media (max-width: 360px) {
  .call-header-cta .btn i {
    display: none !important;
  }
}


.header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}


@media (max-width: 991px) {
  
  .menu-container {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: white !important;
    z-index: 999 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    padding: 10px 0 !important;
  }
  
 
  .menu-container.active {
    display: block !important;
  }
  
  
  .menu-container li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid #eee !important;
  }
  
  .menu-container li a {
    display: block !important;
    padding: 15px 20px !important;
    text-decoration: none !important;
    width: 100% !important;
  }
  
  .menu-container li:hover {
    background-color: #f5f5f5 !important;
  }
}


.container-1 {
  max-width: 1200px !important;
  padding: 0 15px !important;
}













/* @media (max-width: 420px) {
  .serv-section-title {
    font-size: 20px !important;
    line-height: 26px !important;
    word-break: break-word !important;
    text-align: center !important;
  }
} */



/* 
.pricing{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
} */



.price {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid #91d1dc;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}



.two-column-container {
    display: flex;              /* side by side layout */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 30px;                  /* space between left & right columns */
    
}

.left-column2,
.right-column {
    flex: 1;                    /* both take equal width */
    max-width: 50%;             /* each exactly half */
    display: flex;
    flex-direction: column;
    gap: 20px;                  /* space between faq-items inside */
}

.faq-item {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* FAQ question */
.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Answer hidden by default */
.faq-answer {
    display: none;
    margin-top: 10px;
    color: #444;
}
.faq-answer.active {
    display: block;
}

/* Responsive: stack into one column */
/* @media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
    }
    .left-column2,
    .right-column {
        max-width: 100%;
    }
} */




