 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1344px;
            margin: 0 auto;
            width: 100%;
        }

        /* Hero Section */
        .hero-screen {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px 20px 20px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .hero-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            width: 100%;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
        }

        .logo {
            width: 169px;
            height: auto;
            aspect-ratio: 3.25;
        }

        .nav-items {
          
            display: flex;
            flex-wrap: wrap;
            color: #1f2937;
        }

        .nav-item {
            gap: 10px;
            padding: 16px 24px;
            white-space: nowrap;
              text-decoration: none;
            color: black;
            transition: all 0.3s ease-in-out;
        }
 .nav-item:hover {
    color: #0369a1;
 }
        .cta-button {
            gap: 10px;
            padding: 16px 24px;
            color: white;
            background-color: #1f2937;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            text-decoration: none;
            display: inline-block;
        }

        .hero-content {
            padding: 40px;
            margin-top: 20px;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .hero-grid {
            display: flex;
            gap: 20px;
        }

        .hero-left {
            width: 50%;
        }

        .hero-right {
            width: 50%;
        }

        .hero-title {
            font-size: 60px;
            font-weight: bold;
            color: #1f2937;
            line-height: 64px;
        }

        .hero-subtitle {
            margin-top: 24px;
            font-size: 18px;
            font-weight: 600;
            line-height: 24px;
            color: #1f2937;
            width: 498px;
        }

        .hero-cards {
            margin-top: 127px;
        }

        .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .card-left {
            width: 100%;
            display: grid;
        }

        .card-right {
            width: 100%;
        }

        .hours-card {
            display: flex;
            flex-direction: column;
            padding: 32px;
            width: 100%;
            color: #1f2937;
            background-color: #e5e7eb;
            border-radius: 48px;
            font-weight: 600;
        }

        .hours-title {
            font-size: 24px;
            line-height: 1;
        }

        .hours-content {
            display: flex;
            gap: 40px;
            margin-top: 14px;
            font-size: 18px;
            line-height: 1;
        }

        .hours-days {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .hours-times {
            flex: 1;
        }

        .today-card {
            display: flex;
            gap: 8px;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 24px 10px;
            margin-top: 8px;
            font-size: 16px;
            line-height: 1;
            border: 2px solid #d1d5db;
            border-radius: 48px;
            font-weight: 600;
                        color: #1F2937;
            span {
                color: #1F2937;
opacity: 40%;
            }
            a {
                color: inherit;
                text-decoration: none;
            }
        }

        .consultation-card {
            display: flex;
            flex-direction: column;
            padding: 48px 56px;
            width: 100%;
            font-size: 24px;
            font-weight: 600;
            line-height: 32px;
            text-align: center;
            color: white;
            background-color: #0369a1;
            border-radius: 48px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
        }

        .consultation-icon {
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            margin: 0 auto;
            border-radius: 50%;
        }

        .consultation-text {
            text-decoration: none;
            margin-top: 20px;
        }

        .hero-image {
            width: 100%;
            aspect-ratio: 0.98;
            border-radius: 32px;
        }

        /* Screen 02 */
        .screen-02 {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 64px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .screen-02-content {
            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .screen-02-grid {
            display: flex;
            gap: 20px;
        }

        .screen-02-left {
            width: 50%;
        }

        .screen-02-right {
            margin-top: 96px;
            width: 50%;
            margin-left: 20px;
        }

        .screen-name {
            width: fit-content;
            gap: 10px;
            padding: 14px 24px;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            text-transform: uppercase;
            border: 2px solid #d1d5db;
            border-radius: 100px;
            color: #1f2937;
            display: inline-block;
        }

        .doctor-image {
            width: 100%;
            aspect-ratio: 1.12;
            border-radius: 48px;
            margin-top: 48px;
        }

        .doctor-name {
            margin-top: 32px;
            font-size: 48px;
            font-weight: bold;
            line-height: 58px;
            color: #1f2937;
        }

        .doctor-title {
            margin-top: 20px;
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
        }

        .appointment-button {
            gap: 10px;
            padding: 16px 24px;
            margin-top: 40px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
            color: white;
            background-color: #0369a1;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            text-decoration: none;
            display: inline-block;
        }

        .achievement-card {
            padding: 28px 24px;
            font-weight: 600;
            color: #1f2937;
            background-color: #e5e7eb;
            border-radius: 48px;
        }

        .achievement-icon {
            background-color: #1F2937;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 50%;
        }

        .achievement-title {
            margin-top: 20px;
            font-size: 24px;
            line-height: 32px;
        }

        .achievement-description {
            margin-top: 20px;
            font-size: 16px;
            line-height: 1;
        }

        .achievements-grid {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }

        .achievement-small {
            width: 50%;
            padding: 28px 24px;
            font-weight: 600;
            color: #1f2937;
            background-color: #e5e7eb;
            border-radius: 48px;
        }

        /* Test Screen */
        .screen-test {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            color: #1f2937;
            background-color: #e5e7eb;
        }

        .test-content {
            display: flex;
            flex-direction: column;
            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .test-header {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            width: 100%;
        }

        .test-info {
            display: flex;
            gap: 20px;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
        }

        .test-title {
            margin-top: 48px;
            margin-right: 96px;
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
        }

        .test-subtitle {
            margin-top: 20px;
            font-size: 18px;
            font-weight: 600;
            line-height: 1;
        }

        .test-image-container {
            display: flex;
            position: relative;
            flex-direction: column;
            align-items: flex-start;
            align-self: center;
            padding: 24px;
            padding-top: 384px;
            margin-top: 40px;
            max-width: 100%;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            color: white;
            min-height: 520px;
            border-radius: 48px;
            width: 960px;
            overflow: hidden;
            justify-content: end;
        }

        .test-background {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .test-badge {
            display: flex;
            position: relative;
            gap: 16px;
            justify-content: center;
            align-items: center;
            padding: 16px 24px 16px 20px;
               background: rgba(128, 128, 128, 0.24);
    backdrop-filter: blur(20px);
            border-radius: 100px;
        }

        .test-badge-icon {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
        }

        .test-button {
            gap: 10px;
            align-self: center;
            padding: 16px 24px;
            margin-top: 20px;
            width: 384px;
            max-width: 100%;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
            color: white;
            background-color: #1f2937;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            text-decoration: none;
            display: inline-block;
        }

        .consent-text {
            display: flex;
            gap: 8px;
            align-self: center;
            margin-top: 16px;
            max-width: 100%;
            font-size: 16px;
            font-weight: 600;
            line-height: 16px;
            color: #1f2937;
            width: 268px;
        }

        .consent-icon {
            background-color: #E8E9EB;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            border-radius: 50%;
        }

        /* Screen 01 */
        .screen-01 {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .screen-01-content {
            display: flex;
            flex-direction: column;
            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .steps-title {
            margin-top: 48px;
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
            color: #1f2937;
        }

        .steps-grid {
            display: flex;
            gap: 20px;
            margin-top: 32px;
        }

        .step-card {
            width: 25%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 28px 24px;
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            border: 2px solid #d1d5db;
            border-radius: 48px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
        }

        .step-card.active {
            color: white;
            background-color: #0369a1;
        }

        .step-number {
            padding: 16px 20px;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            background-color: #1f2937;
            color: white;
            height: 52px;
            border-radius: 100px;
            width: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-card.active .step-number {
            background-color: #f9fafb;
            color: #1f2937;
        }

        .step-title {
            margin-top: 20px;
            font-size: 24px;
            line-height: 32px;
        }

        .step-description {
            margin-top: 8px;
            line-height: 20px;
        }

        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            align-self: center;
            margin-top: 40px;
            max-width: 100%;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
            width: 534px;
        }

        .download-button {
            display: flex;
            flex: auto;
            gap: 16px;
            justify-content: center;
            align-items: center;
            padding: 16px 24px 16px 20px;
            color: white;
            background-color: #1f2937;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            text-decoration: none;
        }

        .download-icon {
            width: 20px;
            height: 20px;
        }

        .consult-button {
            flex: auto;
            gap: 10px;
            padding: 16px 24px;
            color: #1f2937;
            border-radius: 100px;
            text-decoration: none;
        }

        /* Screen Cards */
        .screen-cards {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .cards-content {

            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .cards-header {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            color: #1f2937;
        }

        .cards-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .cards-title {
            margin-top: 48px;
            font-size: 48px;
            font-weight: bold;
            line-height: 58px;
        }

        .filter-buttons {
            transition: all 0.3s ease-in-out;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            margin-top: 32px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
        }
        .filter-button.inactive {
                 transition: all 0.3s ease-in-out;
        }
         .filter-button.active {
                 transition: all 0.3s ease-in-out;
        }

        .filter-button {
            border: 0;
            gap: 10px;
            padding: 16px 24px;
            border-radius: 100px;
            text-decoration: none;
        }

        .filter-button.active {
            color: white;
            background-color: #0369a1;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
        }

        .filter-button.inactive {
            color: #1f2937;
            background-color: #e5e7eb;
        }

        .cards-right {
            font-size: 16px;
            display: flex;
            flex-direction: column;
            justify-content: end;
            font-weight: 600;
            max-width: 224px;
        }

        .cards-description {
            line-height: 20px;
        }

        .navigation-controls {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
        }

        .nav-arrow-next {
            cursor: pointer;
            background-color: #1F2937;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            flex-shrink: 0;
            path {
                    stroke: white;
                                stroke-opacity: 1;
            }
        }

        .nav-arrow-next.swiper-button-disabled {
            background-color: #E8E9EB;
            path {
                    stroke: rgb(31, 41, 55);
            }
        }

        .nav-arrow-prev {
                        cursor: pointer;
            flex-shrink: 0;
                        display: flex;
            align-items: center;
            justify-content: center;
            background-color: #1F2937;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            path {
                     stroke: white;
                         stroke-opacity: 1;
            }
        }
        .nav-arrow-prev.swiper-button-disabled{
            background-color: #E8E9EB;
            path {
                    stroke: rgb(31, 41, 55);
            }
        }

        .progress-indicator {
            padding: 16px 20px;
        }

        .doctors-grid {
            margin-top: 40px;
        }

        .doctor-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            font-weight: 600;
            min-width: 200px;
            max-width: 300px;
            color: #1f2937;
        }
        .doctor-image-block{
            border-radius: 20px;
            overflow: hidden;
            width: 298px;
            height: 282px;
        }
        .doctor-card-image {
           object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
        }

        .doctor-card-name {
            margin-top: 20px;
            font-size: 24px;
            line-height: 32px;
        }

        .doctor-card-role {
            margin-top: 8px;
            font-size: 16px;
            line-height: 1;
        }

        .doctor-large-grid {
            width: 50%;
        }

        .doctor-small-grid {
            display: flex;
            gap: 20px;
        }

        .doctor-small-card {
            width: 50%;
            font-weight: 600;
        }

        .doctor-experience-card {
            display: flex;
            position: relative;
            flex-direction: column;
            align-items: flex-end;
            padding: 24px 64px 24px;
            padding-top: 208px;
            width: 100%;
            font-size: 16px;
            line-height: 1;
            text-align: center;
            color: white;
            aspect-ratio: 1.057;
            border-radius: 48px;
        }

        .doctor-experience-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .experience-badge {
            position: relative;
            gap: 10px;
            padding: 16px 24px;
            background-color: rgba(113, 113, 122, 0.2);
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
        }

        .doctor-roles {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            margin-top: 8px;
            max-width: 100%;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            color: #1f2937;
            white-space: nowrap;
            width: 388px;
        }

        /* Screen 03 */
        .screen-03 {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            background-color: #e5e7eb;
        }

        .screen-03-content {
            background: url('../img/screen-03-bg.jpg') no-repeat 0px center/cover;
            display: flex;
            position: relative;
            flex-direction: column;
            align-items: flex-start;
            padding: 64px 80px;
            width: 100%;
            min-height: 492px;
            border-radius: 52px;
        }

        .screen-03-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .quality-title {
            position: relative;
            margin-top: 48px;
            font-size: 48px;
            font-weight: bold;
            line-height: 58px;
        }

        .quality-description {
            font-size: 18px;
            position: relative;
            margin-top: 20px;
            line-height: 24px;
        }

        .reviews-button {
            position: relative;
            gap: 10px;
            padding: 16px 24px;
            margin-top: 32px;
            line-height: 1;
            text-align: center;
            color: white;
            background-color: #0369a1;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            text-decoration: none;
            display: inline-block;
        }

        /* Screen Price */
        .screen-price {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .price-content {
            display: flex;
            flex-direction: column;
            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .price-title {
            margin-top: 48px;
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
            color: #1f2937;
        }

        .price-grid {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .price-card {
            display: flex;
            gap: 50px;
            flex-direction: column;
            justify-content: space-between;
            width: 33.33%;
            padding: 32px;
            border: 2px solid #d1d5db;
            border-radius: 48px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
        }

        .price-card-header {
            display: flex;
            gap: 20px;
            justify-content: space-between;
        }

        .price-card-title {
            font-size: 24px;
            font-weight: 600;
            line-height: 32px;
            color: #1f2937;
        }

        .price-card-subtitle {
            margin-top: 44px;
            font-size: 16px;
            font-weight: 500;
            line-height: 1;
        }

        .price-card-icon {
            width: 64px;
            height: 64px;
            border-radius: 100px;
        }

        .price-card-amount {
            margin-top: 40px;
            font-size: 16px;
            font-weight: 600;
            text-align: right;
            color: #0369a1;
        }

        .price-divider {
            height: 2px;
            background-color: #e5e7eb;
            border-radius: 48px;
            margin: 20px 16px;
        }

        .price-item {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            margin-top: 12px;
            font-size: 16px;
        }

        .price-item-name {
            font-weight: 500;
            line-height: 20px;
            color: #1f2937;
        }

        .price-item-cost {
            font-weight: 600;
            text-align: right;
            color: #0369a1;
        }

        .price-total {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .price-total-label {
            display: flex;
            flex-direction: column;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
        }

        .price-total-amount {
            display: flex;
            flex-direction: column;
            text-align: right;
        }

        .price-total-main {
            font-size: 24px;
            font-weight: 600;
            line-height: 1;
            color: #1f2937;
        }

        .price-total-old {
            font-size: 16px;
            font-weight: 500;
            line-height: 1;
            color: #1f2937;
            text-decoration: line-through;
        }

        .consultation-footer {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            margin-top: 32px;
            width: 100%;
            font-weight: 600;
            .appointment-button{
                margin-top: 0;
            }
        }

        .consultation-title {
            font-size: 24px;
            line-height: 1;
            color: #1f2937;
        }

        /* Before/After Screen */
        .screen-before-after {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .before-after-content {
            display: flex;
            flex-direction: column;
            padding-top: 64px;
            padding-bottom: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .before-after-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 0 64px;
            width: 100%;
        }

        .before-after-title {
            margin-top: 48px;
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
            color: #1f2937;
        }

        .before-after-subtitle {
            margin-top: 20px;
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
        }

        .before-after-grid {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            padding: 0 64px;
        }

        .before-after-images {
            width: 61%;
        }

        .before-after-info {
            width: 39%;
            margin-left: 20px;
        }

        .case-image {
            width: 100%;
            aspect-ratio: 1.9;
            border-radius: 48px;
            margin-bottom: 32px;
        }

        .case-image:last-child {
            margin-bottom: 0;
        }

        .case-section {
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            color: #1f2937;
        }

        .case-header {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            padding: 4px 4px 4px 24px;
            color: white;
            white-space: nowrap;
            background-color: #0369a1;
            border-radius: 48px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            margin-bottom: 0;
        }

        .case-header-icon {
            width: 44px;
            height: 44px;
            border-radius: 0;
        }

        .case-content {
            display: flex;
            flex-direction: column;
            padding: 48px 32px 32px;
            font-weight: 500;
            line-height: 24px;
            background-color: #e5e7eb;
            border-radius: 0;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            margin-top: 0;
        }

        .case-inactive {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            padding: 4px 4px 4px 24px;
            margin-top: 8px;
            background-color: #e5e7eb;
            border-radius: 48px;
        }

        .case-buttons {
            display: flex;
            align-self: center;
            margin-top: 40px;
            max-width: 100%;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
            width: 430px;
        }

        .show-more-button {
            gap: 10px;
            padding: 16px 24px;
            color: white;
            background-color: #1f2937;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            text-decoration: none;
        }

        .appointment-button-alt {
            gap: 10px;
            padding: 16px 24px;
            color: #1f2937;
            border-radius: 100px;
            text-decoration: none;
        }

        .final-image {
            margin-top: 64px;
            align-self: center;
            max-width: 100%;
            aspect-ratio: 1.76;
            border-radius: 48px;
            width: 1216px;
        }

        /* Reviews Screen */
        .screen-reviews {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .reviews-content {
            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .reviews-header {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            color: #1f2937;
        }

        .reviews-left {
            display: flex;
            flex-direction: column;
        }

        .reviews-title {
            margin-top: 48px;
            font-size: 48px;
            font-weight: bold;
            line-height: 58px;
        }

        .reviews-right {
            margin-top: 96px;
            font-size: 16px;
            font-weight: 600;
        }

        .reviews-grid {
            margin-top: 40px;
        }

        .review-card {
            min-height: 494px;
            justify-content: space-between;
            width: 50%;
            display: flex !important;
            flex-direction: column;
            padding: 24px;
            color: #1f2937;
            background-color: #e5e7eb;
            border-radius: 48px;
            gap: 20px;
        }

        .review-header {
            display: flex;
            gap: 12px;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 100px;
        }

        .review-author {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .review-name {
            font-size: 24px;
            font-weight: 600;
            line-height: 1;
        }

        .review-rating {
            margin-top: 8px;
            font-size: 16px;
            font-weight: 500;
            line-height: 1;
            align-self: flex-start;
            align-items: center;
    display: flex;
    gap: 10px;
        }

        .review-title {
            margin-top: 32px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
        }

        .review-text {
            margin-top: 16px;
            font-size: 16px;
            font-weight: 500;
            line-height: 20px;
        }

        .review-link {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            padding: 20px;
            margin-top: 24px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            color: white;
            background-color: #0369a1;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            text-decoration: none;
        }

        .review-link-alt {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            padding: 20px;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            background-color: #0369a1;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            text-decoration: none;
            color: white;
        }

        .review-icon {
            width: 20px;
            height: 20px;
        }

        /* Welcome Screen */
        .screen-welcome {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .welcome-content {
            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .welcome-header {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            color: #1f2937;
        }

        .welcome-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .welcome-title {
            margin-top: 48px;
            font-size: 48px;
            font-weight: bold;
            line-height: 58px;
        }

        .address-button {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            padding: 16px 24px 16px 20px;
            margin-top: 32px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
            background-color: #e5e7eb;
            border-radius: 100px;
            text-decoration: none;
            color: #1f2937;
        }

        .address-icon {
            width: 20px;
            height: 20px;
        }

        .welcome-right {
            margin-top: 112px;
            font-size: 16px;
            font-weight: 600;
        }

        .clinic-grid {

            margin-top: 40px;
        }

        .clinic-card {
            width: 33.33%;
            display: flex;
            position: relative;
            flex-direction: column;
            align-items: flex-start;
            padding: 24px;
            padding-top: 160px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
            color: white;
            white-space: nowrap;
            aspect-ratio: 1.667;
            border-radius: 48px;
            overflow: hidden;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
        }

        .clinic-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .clinic-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            gap: 10px;
            padding: 16px 24px;
                background: rgba(128, 128, 128, 0.24);
    backdrop-filter: blur(20px);
            border-radius: 100px;
        }

        /* Certificates Screen */
        .screen-certificates {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .certificates-content {
            display: flex;
            flex-direction: column;
            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .certificates-header {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            margin-top: 48px;
            color: #1f2937;
        }

        .certificates-left {
            display: flex;
            flex-direction: column;
        }

        .certificates-title {
            font-size: 48px;
            font-weight: bold;
            line-height: 58px;
            margin-top: 48px;
        }

        .certificates-subtitle {
            margin-top: 20px;
            font-size: 18px;
            font-weight: 600;
            line-height: 1;
        }

        .certificates-right {
            font-size: 16px;
            font-weight: 600;
        }

        .certificates-description {
            line-height: 20px;
        }

        .certificates-grid {
            margin-top: 32px;
        }

        .certificate-image {
            width: 60%;
        }

        /* News Screen */
        .screen-news {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .news-content {
            display: flex;
            flex-direction: column;
            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .news-header {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            margin-top: 48px;
            width: 100%;
        }

        .news-left {
            display: flex;
            flex-direction: column;
            color: #1f2937;
        }

        .news-title {
            font-size: 48px;
            font-weight: bold;
            line-height: 58px;
        }

        .news-subtitle {
            margin-top: 20px;
            font-size: 18px;
            font-weight: 600;
            line-height: 1;
        }

        .articles-button {
            max-height: 52px;
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            padding: 16px 20px 16px 24px;
            margin-top: 194px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
            color: white;
            background-color: #0369a1;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            text-decoration: none;
        }

        .articles-icon {
            width: 20px;
            height: 20px;
        }

        .news-grid {
            display: flex;
            gap: 20px;
            margin-top: 48px;
        }

        .news-card {
            overflow: hidden;
            width: 33.33%;
            display: flex;
            position: relative;
            flex-direction: column;
            align-items: flex-start;
            padding: 16px;
            padding-top: 162px;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
            color: white;
            aspect-ratio: 1.563;
            border-radius: 48px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
        }

        .news-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-label {
            position: absolute;
            left: 20px;
            bottom: 20px;
            gap: 10px;
            padding: 16px 32px;
    background: rgba(128, 128, 128, 0.24);
    backdrop-filter: blur(20px);
            border-radius: 100px;
            max-width: 90%;
        }

        /* Map Screen */
        .screen-map {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 16px 80px;
            width: 100%;
            background-color: #e5e7eb;
        }

        .map-content {
            display: flex;
            flex-direction: column;
            padding: 64px;
            width: 100%;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .map-grid {
            display: flex;
            gap: 20px;
            margin-top: 48px;
        }

        .map-left {
            width: 41%;
        }

        .map-right {
            overflow: hidden;
            border-radius: 48px;
            width: 59%;
            margin-left: 20px;
        }

        .map-title {
            font-size: 48px;
            font-weight: bold;
            color: #1f2937;
            line-height: 58px;
        }

        .map-subtitle {
            margin-top: 20px;
            font-size: 18px;
            font-weight: 600;
            line-height: 1;
            color: #1f2937;
        }

        .contact-form {
            gap: 8px;
            display: flex;
            flex-direction: column;
            padding: 24px;
            margin-top: 40px;
            width: 100%;
            color: white;
            background-color: #0369a1;
            border-radius: 48px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
        }

        .form-header {
            display: flex;
            gap: 16px;
            color: white;
            margin-bottom: 24px;
        }

        .form-icon {
            width: 52px;
            height: 52px;
        }

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

        .form-title-main {
            font-size: 24px;
            font-weight: 600;
            line-height: 1;
        }

        .form-title-sub {
            font-size: 16px;
            font-weight: 500;
            line-height: 1;
        }

        .form-input {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            padding: 16px 24px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            background-color: #387FBC;
            border-radius: 48px;
            border: none;
            color: white;
            position: relative;
        }


          .form-input::placeholder {
            color: white;
            opacity: 40%;
          }
        .form-input-icon {
            width: 20px;
            height: 20px;
        }

        .form-submit {
            margin-top: 12px;
            gap: 10px;
            padding: 16px 24px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
            color: #1f2937;
            background-color: #f9fafb;
            border-radius: 100px;
            box-shadow: 0px 4px 8px rgba(10,5,0,0.04);
            border: none;
            cursor: pointer;
        }

        .hours-info {
            display: flex;
            flex-direction: column;
            padding: 32px;
            margin-top: 20px;
            width: 100%;
            border: 2px solid #d1d5db;
            border-radius: 48px;
        }

        .hours-grid {
            display: flex;
            gap: 20px;
            flex-direction: column;
        }

        .hours-left {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        .hours-right {
            width: 37%;
            margin-left: 20px;
        }

        .hours-info-title {
            font-size: 24px;
            line-height: 1;
            color: #1f2937;
            font-weight: 600;
        }

        .hours-info-days {
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            color: #1f2937;
        }

        .hours-info-times {

            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            color: #1f2937;
        }

        .sunday-note {
            display: flex;
            gap: 4px;
            margin-top: 16px;
            font-weight: 600;
color: #1F293766;

        }

        .sunday-asterisk {
            font-size: 20px;
            line-height: 1;
        }

        .sunday-text {
            font-size: 16px;
            line-height: 1;
        }

        .map-image {
            width: 100%;
            aspect-ratio: 0.96;
            border-radius: 0;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            align-self: center;
            margin-top: 40px;
            max-width: 100%;
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            width: 685px;
        }

        .contact-item {
            color: black;
            display: flex;
            gap: 8px;
            align-items: center;
            text-decoration: none;
        }
        .contact-item:hover {
            color: #0369a1;
        }

        .contact-icon {
            width: 32px;
            height: 32px;
        }

        /* Footer */
        .footer {
            display: flex;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px 80px;
            width: 100%;
            font-weight: 600;
            background-color: #e5e7eb;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            padding: 16px 20px;
            width: 100%;
            font-size: 16px;
            line-height: 1;
            text-align: center;
            background-color: #f9fafb;
            border-radius: 52px;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            color: #1f2937;
        }

        .footer-nav-item {
            gap: 10px;
            padding: 16px 24px;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            margin-top: 64px;
            width: 100%;
            font-size: 14px;
            line-height: 1;
        }

        .footer-left {
            display: flex;
            gap: 20px;
        }

        .footer-service {
            color: #1f2937;
        }

        .footer-privacy {
            color: #0369a1;
        }

        .footer-right {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            color: #1f2937;
        }

        .footer-copyright {
            text-align: center;
        }

        .footer-disclaimer {
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-screen,
            .screen-02,
            .screen-test,
            .screen-01,
            .screen-cards,
            .screen-03,
            .screen-price,
            .screen-before-after,
            .screen-reviews,
            .screen-welcome,
            .screen-certificates,
            .screen-news,
            .screen-map,
            .footer {
                padding-left: 20px;
                padding-right: 20px;
            }

            .hero-content,
            .screen-02-content,
            .test-content,
            .screen-01-content,
            .cards-content,
            .price-content,
            .before-after-content,
            .reviews-content,
            .welcome-content,
            .certificates-content,
            .news-content,
            .map-content {
                padding: 20px;
            }

            .hero-grid,
            .screen-02-grid,
            .cards-grid,
            .news-grid,
            .map-grid {
                flex-direction: column;
            }

            .hero-left,
            .hero-right,
            .screen-02-left,
            .screen-02-right,
            .card-left,
            .card-right,
            .step-card,
            .price-card,
            .before-after-images,
            .before-after-info,
            .review-card,
            .clinic-card,
            .news-card,
            .map-left,
            .map-right {
                width: 100%;
                margin-left: 0;
                margin-top: 20px;
            }

            .hero-title,
            .doctor-name,
            .test-title,
            .steps-title,
            .cards-title,
            .price-title,
            .before-after-title,
            .reviews-title,
            .welcome-title,
            .certificates-title,
            .news-title,
            .map-title {
                font-size: 32px;
                line-height: 40px;
            }

            .hero-subtitle {
                width: 100%;
            }



            .cards-right,
            .reviews-right,
            .welcome-right {
                margin-top: 40px;
            }



            .doctor-card,
            .doctor-large-grid {
                width: 100%;
            }

            .doctor-small-grid {
                flex-direction: column;
            }

            .doctor-small-card {
                width: 100%;
            }
        }


         .main-card {
            width: 100%;
            max-width: 1344px;
            background-color: #F9FAFB;
            border-radius: 52px;
            position: relative;
        }

        .content {
            padding: 64px;
        }

        @media (max-width: 768px) {
            .content {
                padding: 32px 16px;
            }
        }

        .header {
            margin-bottom: 32px;
        }

        .badge {
            display: inline-flex;
            padding: 14px 24px;
            border: 2px solid #E3E4E5;
            border-radius: 100px;
            margin-bottom: 32px;
        }

        .badge span {
            color: #1F2937;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.025em;
        }

        .grid-header {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 64px;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .grid-header {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        .title-section h1 {
            font-size: 48px;
            font-weight: 700;
            color: #1F2937;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        @media (max-width: 768px) {
            .title-section h1 {
                font-size: 32px;
            }
        }

        .title-section p {
            font-size: 16px;
            font-weight: 700;
            color: #1F2937;
            line-height: 1.5;
        }

        .nav-section p {
            font-size: 16px;
            font-weight: 700;
            color: #1F2937;
            line-height: 1.5;
            margin-bottom: 32px;
        }

        .navigation {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .nav-btn:disabled {
            cursor: not-allowed;
            opacity: 0.5;
        }

        .nav-btn.prev {
            background-color: #E8E9EB;
        }

        .nav-btn.next {
            background-color: #1F2937;
            box-shadow: 0 4px 8px rgba(10, 5, 0, 0.04);
        }

        .nav-btn svg {
            width: 24px;
            height: 24px;
            stroke-width: 2.5;
        }

        .nav-btn.prev svg {
            stroke: #1F2937;
            opacity: 0.4;
        }

        .nav-btn.next svg {
            stroke: white;
        }

        .page-counter {
            padding: 16px 20px;
        }

        .page-counter span {
            font-size: 16px;
            font-weight: 700;
            color: #1F2937;
        }

        .stories-grid {
            margin-bottom: 64px;
        }

        @media (max-width: 1024px) {
            .stories-grid {
                grid-template-columns: 1fr;
            }
        }

        .story {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .before-after-slider {
            position: relative;
            width: 100%;
            height: 320px;
            border-radius: 48px;
            overflow: hidden;
            background-color: #D9D9D9;
            cursor: ew-resize;
        }

        .slider-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            user-select: none;
            pointer-events: none;
        }

        .before-image-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-line {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(10, 5, 0, 0.04);
            z-index: 10;
            transform: translateX(-50%);
        }

        .slider-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
            background-color: #F9FAFB;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(10, 5, 0, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-handle svg {
            width: 20px;
            height: 20px;
            stroke: #1F2937;
            stroke-width: 2;
        }

        .slider-labels {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            display: flex;
            justify-content: space-between;
        }

        .slider-label {
            display: inline-flex;
            padding: 16px 24px;
            background: rgba(128, 128, 128, 0.24);
            backdrop-filter: blur(20px);
            border-radius: 100px;
        }

        .slider-label span {
            color: white;
            font-size: 16px;
            font-weight: 700;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .accordion-item {
            width: 100%;
        }

        .accordion-header {
                z-index: 1;
    position: relative;
            width: 100%;
            height: 52px;
            padding: 4px 4px 4px 24px;
            border-radius: 48px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.2s;
        }

        .accordion-header.active {
            background-color: #0369a1;
            box-shadow: 0 4px 8px rgba(10, 5, 0, 0.04);
                        margin-top: 30px;

        }

        .accordion-header.inactive {
            background-color: #E8E9EB;
            margin-top: 30px;
        }

        .accordion-title {
            font-size: 16px;
            font-weight: 700;
        }

        .accordion-header.active .accordion-title {
            color: white;
        }

        .accordion-header.inactive .accordion-title {
            color: #1F2937;
        }

        .accordion-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .accordion-header.active .accordion-icon {
            background-color: #F9FAFB;
            transform: rotate(180deg);
        }

        .accordion-header.inactive .accordion-icon {
            background-color: #1F2937;
            path {
                stroke: white;
            }
            transform: rotate(0deg);
        }

        .accordion-icon svg {
            width: 20px;
            height: 20px;
            stroke-width: 2.5;
        }

        .accordion-header.active .accordion-icon svg {
            stroke: #1F2937;
        }

        .accordion-header.inactive .accordion-icon svg {
            stroke: white;
        }

        .accordion-content {
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            max-height: 0;
                            margin-top: -30px;

        }

        .accordion-content.open {
            max-height: 300px;
                margin-top: -30px;
                margin-bottom: -30px;
        }

        .accordion-text {
            background-color: #E8E9EB;
            border-radius: 0 0 48px 48px;
            box-shadow: 0 4px 8px rgba(10, 5, 0, 0.04);
            padding: 50px 32px;
        }

        .accordion-text p {
            font-size: 16px;
            font-weight: 400;
            color: #1F2937;
            line-height: 1.5;
            margin-bottom: 24px;
        }

        .accordion-text p:last-child {
            margin-bottom: 0;
        }

        .cta-button {
            display: flex;
            justify-content: center;
        }

        .cta-btn {
            display: inline-flex;
            padding: 16px 24px;
            background-color: #0369a1;
            border-radius: 100px;
            border: none;
            box-shadow: 0 4px 8px rgba(10, 5, 0, 0.04);
            cursor: pointer;
            transition: background-color 0.2s;
            text-decoration: none;
                font-size: 16px;
    font-weight: 600;
            color: white;
        }

        .cta-btn:hover {
            background-color: #0652a0;
        }

        .cta-btn span {
            color: white;
            font-size: 16px;
            font-weight: 700;
        }

        .video-section {
            width: 100%;
            height: 400px;
            border-radius: 48px;
            overflow: hidden;
            position: relative;
            background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1200&h=700&fit=crop') center/cover;
            box-shadow: 0 4px 8px rgba(10, 5, 0, 0.04);
        }

        @media (min-width: 768px) {
            .video-section {
                height: 690px;
            }
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-button {
            width: 136px;
            height: 96px;
            border: none;
            background: none;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .hidden {
            display: none;
        }

        .before-after-btn{
            margin-inline: auto;
            max-width: fit-content;
            margin-bottom: 64px;
        }


        @media(max-width: 1250px){
            .consultation-card {
                padding: 20px;
            }
            .cards-grid {
                grid-template-columns: 1fr;
            }
            .screen-02-right{
                margin-left: 0px;
            }
            .screen-02-grid {
                gap: 10px;
            }
            .achievements-grid {
                flex-direction: column;
            }
            .achievement-small {
                width: 100%;
            }
            .step-title {
                font-size: 20px;
            }
            .step-card {
                padding: 20px;
            }
            .price-card-header{
                flex-direction: column-reverse;
                align-items: center;
            }
                    .price-card {
            padding: 10px;
        }
        .map-grid{
            flex-direction: column;
        }
        .map-left{
            width: 100%;
        }
         .map-right{
            width: 100%;
            height: 300px;
        }
        }

        @media(max-width: 992px){
                    .steps-grid {
                        flex-direction: column;
                    }
                    .step-card{
                        width: 100%;

                    }

                    .cards-header{
                        flex-direction: column;
                    }

        .welcome-content{
            padding: 30px;
        }
        .news-content{
                 padding: 30px;
        }
        .news-grid{
        flex-direction: column;
        }
        .news-card {
            width: 100%;
        }
        .reviews-content{
            padding: 20px;
        }
        .content{
            padding: 20px;

        }
        .price-content{
                     padding: 20px;
        }

        .price-grid {
            gap: 10px;
        }
        .price-item-name {
            font-size: 14px;
        }
        .price-item{
            flex-direction: column;
            gap: 5px;
        }
        .price-card{
            border-radius: 20px;
        }
        .price-total{
            flex-direction: column;
        }
        .screen-03-content {
            background: url('../img/screen-03-bg.jpg') no-repeat -100px center/cover;
        }
    }
        @media(max-width: 767px){
        .screen-03-content {
            background: url('../img/screen-03-bg.jpg') no-repeat -150px center/cover;
        }
        .hero-cards {
            width: 100%;
            margin-top: 0px;
        }
        .screen-03-content {

            padding: 30px;
        }
        .quality-title {
                font-size: 30px;
                    line-height: 30px;
                }
                .cards-title{
                    br {
                        display: none;
                    }
                }
                .news-label{
                left: 10px;
                    bottom: 10px;
                    padding: 10px;
                }
                .footer-content{
                    align-items: center;
                        justify-content: center;
                }
                .footer-nav {
                    flex-direction: column;
                }
                .footer-nav-item {
                    padding: 0px;
                }
                .articles-button{
                    margin-top: 0px;
                }
                .news-label {
                    border-radius: 20px;
                }
                .news-card {
                                   border-radius: 30px;
                }
                .steps-grid{
                    gap: 0px;
                }
                .price-grid {
                    overflow-x: scroll;
                }
                .price-card{
                    min-width: 300px;
                    gap: 10px;
                }
        }


        @media(max-width: 575px){
            .nav-item {
                    padding: 10px 18px;
            }
        .screen-03-content {
            background: white;
        }
        .cards-title {
            font-size: 25px;
            line-height: 25px;
            }
            .map-title{
                        font-size: 25px;
            line-height: 25px;
            }
            .cards-right{
                margin-top: 0;
                max-width: 100%;
            }
            .welcome-content, 
            .reviews-content, 
            .content,
            .price-content,
            .screen-03-content,
             .cards-content,
             .hero-content,
             .screen-02-content,
             .test-content,
             .screen-01-content,
             .certificates-content,
             .news-content,
             .map-content,
             .footer-content
             {
                border-radius: 20px;
                padding: 10px;
            }
            .main-card {
                border-radius: 20px;

            }
            .video-section {
                 border-radius: 20px;
                     height: 250px;
            }
            .before-after-slider {
                height: 250px;
            }
            .slider-label {
                    padding: 8px 12px;
                        border-radius: 10px;
            }
            .screen-03-content {
                min-height: auto;
            }
        }


        @media(max-width: 425px){
                    .before-after-slider {
                height: 200px;
            }
            .test-info{
                flex-direction: column;
            }
        }

        .wrap{
            overflow: hidden;
        }

        .cert-block{
            border-radius: 48px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            min-width: 282px;
            min-height: 282px;
            background-color: #0A05000A;
        }


@media(max-width: 475px){

    .cta-button{
        width: 100%;
    }
    .hero-left{
        margin-top: 0;
    }
    .hero-subtitle{
        margin-top: 10px;
    }
    .hours-card {
        padding: 20px;
        border-radius: 20px;
    }
    .consultation-card {
        pad: 10px;
        font-size: 20px;
        border-radius: 20px;
    }
    .consultation-text{
        margin-top: 10px;
    }
    .card-right{
        margin-top: 0px;
    }
    .hero-right{
        margin-top: 0px;
    }
    .hero-image {
        border-radius: 20px;
    }
    .screen-02-left{
        margin-top: 0px;
    }
    .doctor-image{
        margin-top: 10px;
    }
    .doctor-name{
        margin-top: 10px;
    }
    .doctor-title{
        margin-top: 10px;
    }
    .appointment-button{
        margin-top: 10px;
        width: 100%;
    }
    .screen-02-right{
        margin-top: 10px;
    }
    .achievement-card, .achievement-small {
        padding: 15px;
        border-radius: 20px;
    }
.achievement-title {
        margin-top: 10px;
    font-size: 18px;
    line-height: 22px;
}
.achievement-description {
    margin-top: 10px;
    font-size: 15px;
}
.achievement-icon {
    width: 40px;
    height: 40px;
}
.test-header{
    gap: 10px;
    align-items: center;
}
.test-info{
    align-items: start;
    gap: 10px;
    max-width: 80%;
}
.test-title {
    margin-top: 10px;
    margin-right: 0px;
}
    .hero-title, .doctor-name, .test-title, .steps-title, .cards-title, .price-title, .before-after-title, .reviews-title, .welcome-title, .certificates-title, .news-title, .map-title {
        font-size: 26px;
        line-height: 30px;
    }
    .test-subtitle{
        margin-top: 10px;
    }
    .test-image-container{
        margin-top: 10px;
    }
    .test-image-container {
            min-height: 200px;
                padding-top: 240px;
    }
    .screen-name{
        width: 100%;
    }
    .steps-title{
        margin-top: 10px;
    }
    .steps-grid{
        margin-top: 10px;
        gap: 10px;
    }
    .step-card{
        margin-top: 0px;
        padding: 10px;
        border-radius: 20px;
    }
    .step-title{
        margin-top: 10px;
    }
    .doctors-grid {
        margin-top: 10px;
    }
    .navigation-controls{
        margin-top: 10px;
    }
    .cards-title{
        margin-top: 10px;
    }
    .filter-buttons{
        margin-top: 10px;
    }
    .quality-title{
        margin-top: 10px;

    }
    .quality-description{
                margin-top: 10px;
        br {
            display: none;
        }
    }
    .reviews-button{
        width: 100%;
        margin-top: 10px;
    }
    .price-grid
    {
        margin-top: 10px;
    }
    .price-card-header{
        gap: 10px;
    }
    .price-card-icon {
    width: 40px;
    height: 40px;
    }
    .price-divider { margin: 5px 0px;}
    .price-total{
        gap: 10px;
    }
.price-card-title {
    font-size: 22px;
}
.consultation-footer{
    margin-top: 10px;
}
.appointment-button{
    margin-top: 10px;
}
.cards-header{
    gap: 10px;
}
.header{
    margin-bottom: 10px;
}
.before-after-btn
{
    margin: 10px 0px;
    max-width: 100%;
    .cta-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}
.stories-grid {
    margin-bottom: 50px;
}
.reviews-grid{
    margin-top: 10px;
}
.review-card{
    margin-top: 0px;
}
.review-title{
    margin-top: 10px;
}
.address-button{
    margin-top: 10px;
}
.clinic-card {
    margin-top: 0px;
}
.clinic-grid{
    margin-top: 10px;
}
.certificates-grid {
    margin-top: 10px;
}
.news-grid{
    margin-top: 10px;
    gap: 10px;
}
.news-card{
    margin-top: 0px;
}
.map-grid{
    margin-top: 10px;
}
.map-left{
    margin-top: 0px;
}
.contact-form{
    margin-top: 10px;
}
.hours-info{
    margin-top: 10px;
}.contact-form {
    padding: 20px;
    border-radius: 20px;
}
.map-right{
    margin-top: 0px;
}
.contact-info{
    margin-top: 10px;
}
.footer-bottom{
    margin-top: 10px;
}
}

.map {
    height: 100%;
    width: 100%;
}

.link {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.link:hover {
    outline: 1px solid #0369a1;
    outline-offset: -1px;
    color: black;
    background-color: white;
    path {
        stroke: black;
    }
    .consultation-icon{
        transition: all 0.3s ease-in-out;
        background: #0369a1;
         path {
        stroke: white;
    }
    }
}

.modal {
    display: none;
    width: 100%;
    background-color: white;
    max-width: 448px;
    border-radius: 48px;
    form {
        margin-top: 32px;
        gap: 8px;
        display: flex;
        flex-direction: column;
    }
    padding: 24px;
}

.fancybox__content.marquiz__container  {
    padding: 0;
}

.modal-text{
    display: flex;
    gap: 16px;
}

.modal-icon{
    background-color: #1F2937;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-text-block{
    h2 {
font-weight: 600;
font-size: 24px;
line-height: 32px;
letter-spacing: 0px;
vertical-align: middle;

    }
    p {
font-weight: 500;
font-size: 16px;
line-height: 20px;
letter-spacing: 0px;
vertical-align: middle;

    }
}

.modal-input{
    background-color: #E8E9EB;
    border-radius: 48px;
    padding-left: 24px;
    height: 52px;
    align-items: center;
    display: flex;
    width: 100%;
    border: 0px;
}
.modal-input::placeholder{
    color: #979CA3;
     opacity: 40%;
}

.modal-button{
    height: 52px;
    margin-top: 24px;
    border-radius: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
font-weight: 600;
font-size: 16px;
line-height: 20px;
letter-spacing: 0px;
text-align: center;
vertical-align: middle;
    background-color: #0369a1;
    color: white;
    border: 0;
    transition: all 0.3s ease-in-out;
}

.modal-button:hover{   
    color: black;
    background-color: white;
    outline: 1px solid #0369a1;
    outline-offset: 1px;
}

.form-submit{
        transition: all 0.3s ease-in-out;
}
.form-submit:hover{
     color: white;
    background-color: #387FBC;;
}


.consent-text{
     a {
        color: black; 
        text-decoration: none;
     }
}

.consent-icon{
    transition: all 0.3s ease-in-out;
    input {
-webkit-appearance: none;
    appearance: none;
    display: none;
    }
}
.consent-icon:has(input:checked) {
    background-color: #387FBC;;
    path {
        stroke: white;
        stroke-opacity: 100%;
    }
}

form {
    .consent-text {
        align-self: flex-start;
    }
}

.contact-form{
        .consent-text {
            div {
                color: white;
                a {
                      color: white;
            }
            }
            
        }
}

.err {
            color: red !important;
                font-weight: bold;
    ul {
        list-style-type: none;
    }
    li {
        color: red !important;
            font-weight: bold;
    }
}

#test-check {
    position: absolute;
    display: block;
    opacity: 0;
    width: 1px;
    height: 1px;
    appearance: initial;
    -webkit-appearance: initial;
}