/* ==========================================================================
   Global Styles
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

* {
    font-family: "Satoshi", sans-serif;
}

.container {
    background-color: #F6FFF7;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav-item {
    color: #656565 !important;
}

.nav-item.active {
    color: #97C49C !important;
}

.hamburger-line {
    background-color: black;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    height: 705px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 0 160px 0 160px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    filter: brightness(0.55);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    text-align: left;
    animation: fadeUp 1s ease forwards;
    width: 50%;
    margin-left: 6rem;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.2rem;
    animation: fadeUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

.hero-btn {
    display: inline-block;
    background: #01784B;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
}

.hero-download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background: rgba(255, 255, 255, 0.47);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    gap: 15px;
    transition: all 0.3s ease;
}

.hero-download-btn:hover {
    background-color: #E0FFE0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 120, 75, 0.2);
}

/* ==========================================================================
   Top Divider
   ========================================================================== */

.top-divider {
    padding-top: 100px;
    padding-bottom: 50px;
}

.top-line {
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, #9F9F9F 50%, transparent 100%);
    max-width: 1300px;
    margin: 0 auto;
}

/* ==========================================================================
   Operator Features Section
   ========================================================================== */

.operator-features {
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 700;
}

.intro-text {
    text-align: center;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #000000;
}

.intro-text p {
    text-align: left;
    width: 100%;
    padding: 0 6rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 0 6rem;
}

.feature-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-image {
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.08);
}

.feature-content {
    padding: 2rem 1.8rem;
}

.feature-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.feature-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #555;
}

/* ==========================================================================
   Laparoscopy Technology Section
   ========================================================================== */

.laparoscopy-tech {
    padding: 5rem 6rem;
    position: relative;
    overflow: hidden;
}

.main-feature {
    display: grid;
    grid-template-columns: 65% 45%;
    gap: 3rem;
    margin-bottom: 2rem;
    margin-top: 50px;
    background: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(1, 120, 75, 0.08);
}

.features-grid-tech {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
}

.feature-image-tech {
    position: relative;
    height: 380px;
    overflow: hidden;
    padding: 2rem;
}

.feature-image-tech img {
    height: 100%;
    width: auto;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.main-feature:hover .feature-image-tech img {
    transform: scale(1.07);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(1, 120, 75, 0.85);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.3rem;
}

.feature-content-tech {
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

.card-feature-content-tech {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.feature-card-tech {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    width: 100%;
}

.feature-card-tech:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(1, 120, 75, 0.15);
}

.feature-card-tech .feature-image-tech {
    height: 260px;
}

.feature-card-tech .feature-content-tech {
    padding: 1.8rem;
}

.feature-card-tech h3 {
    font-size: 2em;
    font-weight: 500;
}

.feature-subtitle {
    font-size: 1em;
    padding: 0 8rem;
}

.feature-subtitle p {
    position: relative;
    bottom: 100px;
    padding: 0 2rem;
}

.highlight {
    font-weight: 600;
    color: #000000;
    margin-top: 1rem;
}

/* ==========================================================================
   Lists
   ========================================================================== */

ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.8rem;
}

ul li::before {
    color: #000000;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-feature-content-tech ul li::before {
    content: "•";
}

.card-feature-content-tech ul {
    margin-left: 20px;
}

/* ==========================================================================
   Decorative Elements
   ========================================================================== */

.decor-arrow {
    position: relative;
    bottom: 110px;
    right: 100px;
    width: 140px;
    z-index: 1;
}

.decor-corner {
    position: relative;
    bottom: 130px;
    right: 80px;
    width: 80px;
    margin-left: 100%;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1160px) {
    header {
        background-color: #00000033;
    }

    .hamburger-line {
        background-color: white;
    }

    .top-divider {
        margin-bottom: 20px;
    }

    .top-line {
        background: none;
    }
}

@media (max-width: 892px) {
    .features-grid,
    .features-grid-tech {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .section-title {
        text-align: left;
        font-size: 2.2rem;
    }

    .intro-text p {
        font-size: 1.05rem;
        margin-bottom: 3rem;
        text-align: left;
        padding: 0 !important;
    }

    .main-feature {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }

    .feature-image-tech {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: fit-content;
        border-radius: 0 120px 0 120px;
        align-items: flex-start;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-bg {
        transform: scale(1);
    }

    .hero-content {
        width: 100%;
        margin-left: 0;
        padding: 0 2rem;
        gap: 18px;
        margin-top: 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 1.5rem;
        line-height: 1.5;
        font-weight: 500;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .hero-btn {
        padding: 0.9rem 1.4rem;
        font-size: 0.9rem;
    }

    .hero-download-btn {
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
    }

    .hero-download-btn svg {
        width: 20px;
        height: 18px;
    }

    .operator-features {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 1.9rem;
        text-align: left;
        margin-bottom: 1.2rem;
    }

    .intro-text {
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }

    .feature-card {
        border-radius: 18px;
        margin-bottom: 1.5rem;
    }

    .feature-content {
        padding: 1.5rem 1.2rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .feature-image {
        height: 220px;
    }

    .laparoscopy-tech {
        padding: 3rem 1.5rem;
    }

    .main-feature {
        border-radius: 18px;
        margin-bottom: 2rem;
        gap: 10px;
        height: 600px;
    }

    .feature-content-tech {
        padding: 2rem 1.5rem;
        gap: 30px;
    }

    .card-feature-content-tech {
        padding: 2rem 1.5rem;
        gap: 15px;
    }

    .feature-card-tech h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .feature-image-tech {
        padding: 1.5rem;
        margin: 0 auto;
    }

    .feature-image-tech img {
        width: auto;
        height: 100%;
        object-fit: contain;
    }

    .feature-subtitle {
        padding: 0 1.5rem;
        font-size: 0.95rem;
    }

    .feature-subtitle p {
        padding: 0;
        line-height: 1.6;
        bottom: 70px;
    }

    .image-overlay {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        bottom: 15px;
        right: 15px;
    }

    ul li {
        padding: 0.4rem 0;
        padding-left: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }


    .decor-arrow {
        width: 80px;
        bottom: 80px;
        left: 0;
    }

    .decor-corner {
        bottom: 90px;
        right: 30px;
    }
}

@media (max-width: 576px) {
    .operator-features {
        padding: 2.5rem 1.2rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .intro-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        margin-bottom: 1.2rem;
    }

    .feature-content {
        padding: 1.3rem 1rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .feature-image {
        height: 200px;
    }

    .laparoscopy-tech {
        padding: 2.5rem 1.2rem;
    }

    .feature-content-tech {
        padding: 1.5rem 1.2rem;
        gap: 25px;
    }

    .card-feature-content-tech {
        padding: 1.5rem 1.2rem;
        gap: 12px;
    }

    .feature-content-tech h3,
    .feature-card-tech h3 {
        font-size: 1.35rem;
    }

    .feature-image-tech {
        padding: 1.2rem;
    }

    .image-overlay {
        font-size: 0.95rem;
        padding: 0.45rem 0.9rem;
    }

    ul li {
        font-size: 0.9rem;
        padding: 0.35rem 0 0.35rem 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        border-radius: 0 90px 0 90px;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
        min-height: 600px;
        height: auto;
    }

    .hero-content {
        padding: 0 1.5rem;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .hero-buttons {
        margin-top: 1rem;
    }

    .hero-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-download-btn {
        padding: 0.7rem 1.1rem;
        font-size: 0.85rem;
    }

    .hero-download-btn svg {
        width: 18px;
        height: 16px;
    }

    .operator-features {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .intro-text {
        font-size: 0.9rem;
    }

    .feature-content {
        padding: 1.2rem 0.9rem;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .laparoscopy-tech {
        padding: 2rem 1rem;
    }

    .feature-content-tech {
        padding: 3rem 2rem;
    }

    .card-feature-content-tech {
        padding: 1.2rem 1rem;
    }

    .feature-image-tech {
        height: 100%;
        padding: 1rem;
    }

    ul li {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Advanced Equipment Section
   ========================================================================== */

.advanced-equipment {
    padding: 5rem 6rem;
    position: relative;
    overflow: visible;
}

.equipment-top {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.equipment-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.equipment-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
    text-align: left;
}

.equipment-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(1, 120, 75, 0.15);
}

.benefit-item svg {
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.equipment-summary {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-top: 2rem;
    text-align: left;
}

.equipment-svg-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 4rem auto;
}

.equipment-svg {
    width: 80%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.equipment-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
    z-index: 1;
}

.equipment-bottom {
    max-width: 1200px;
    margin: 4rem auto 0;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 3rem;
}

.equipment-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 3rem;
    text-align: left;
    width: 400px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.equipment-bottom-content {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.equipment-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: -3rem;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.oec-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.equipment-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* ==========================================================================
   Control System Section
   ========================================================================== */

.control-system {
    padding: 5rem 6rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-template-rows: auto auto auto;
    gap: 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.control-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.control-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.control-summary {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.control-svg-container {
    width: 100%;
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-svg-container picture {
    display: block;
    width: 100%;
}

.control-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */

.why-us {
    padding: 5rem 6rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-us-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    padding-bottom: 2rem;
}

.why-us-intro,
.why-us-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    padding-bottom: 1rem;
}

.why-us-svg-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-svg-container picture {
    display: block;
    width: 100%;
}

.why-us-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   For Patients Section
   ========================================================================== */

.for-patients {
    padding: 5rem 6rem;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.patients-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 6rem;
}

.patients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.patient-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.patient-benefit.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.patient-benefit:nth-child(1).visible {
    transition-delay: 0.1s;
}

.patient-benefit:nth-child(2).visible {
    transition-delay: 0.2s;
}

.patient-benefit:nth-child(3).visible {
    transition-delay: 0.3s;
}

.patient-benefit:nth-child(4).visible {
    transition-delay: 0.4s;
}

.benefit-icon-container {
    width: 100px;
    height: 100px;
    background: #DBFAE0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-icon-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(1, 120, 75, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: block;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    max-width: 200px;
}

.patients-cta {
    padding-top: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.cta-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
}

.cta-btn {
    background: #01784B;
    color: white;
    padding: 0.7rem 2rem 0.7rem 0.7rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cta-btn::before {
    content: '';
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300a651' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.cta-btn:hover {
    background: #008a44;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.map-section {
    padding: 0 5%;
    background: #F6FFF7;
    text-align: center;
    padding-bottom: 4rem;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 600px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Responsive for Advanced Equipment Section */
@media (max-width: 992px) {
    .patients-cta {
        flex-direction: column;
    }

    .advanced-equipment {
        padding: 3rem 1.5rem;
    }

    .equipment-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .equipment-bottom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 3rem;
    }

    .equipment-dots {
        width: 140px;
    }

    .control-system {
        padding: 3rem 1.5rem;
        grid-template-columns: 350px 1fr;
        gap: 1.5rem 2rem;
    }

    .control-title {
        font-size: 2rem;
    }

    .control-intro,
    .control-summary {
        font-size: 1rem;
    }

    .why-us {
        padding: 3rem 1.5rem;
        grid-template-columns: 350px 1fr;
        gap: 2rem;
    }

    .why-us-title {
        font-size: 2rem;
    }

    .why-us-intro,
    .why-us-description {
        font-size: 1rem;
    }

    .for-patients {
        padding: 3rem 1.5rem;
    }

    .patients-title {
        font-size: 2rem;
        padding-bottom: 2rem;
    }

    .patients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cta-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .advanced-equipment {
        padding: 3rem 1.5rem;
    }

    .equipment-title {
        font-size: 1.8rem;
    }

    .equipment-intro,
    .equipment-summary {
        font-size: 1rem;
    }

    .equipment-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 0.8rem 1.2rem;
    }

    .benefit-item span {
        font-size: 0.95rem;
    }

    .equipment-svg-container {
        margin: 3rem auto 2.5rem;
    }

    .equipment-svg {
        width: 100%;
    }

    .equipment-bottom {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .equipment-subtitle {
        font-size: 1.6rem;
        margin-bottom: 0;
        width: 100%;
        order: 1;
    }

    .equipment-image {
        border-radius: 15px;
        order: 2;
        padding-top: 1rem;
    }

    .equipment-bottom-content {
        order: 3;
    }

    .equipment-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .control-system {
        padding: 3rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .control-title {
        font-size: 1.8rem;
        order: 1;
    }

    .control-intro {
        font-size: 1rem;
        order: 2;
    }

    .control-svg-container {
        order: 3;
    }

    .control-summary {
        font-size: 1rem;
        order: 4;
    }

    .why-us {
        padding: 3rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .why-us-content {
        display: contents;
    }

    .why-us-title {
        font-size: 1.8rem;
        order: 1;
    }

    .why-us-intro {
        font-size: 1rem;
        order: 2;
    }

    .why-us-svg-container {
        order: 3;
    }

    .why-us-description {
        font-size: 1rem;
        order: 4;
    }

    .for-patients {
        padding: 3rem 1.5rem;
    }

    .patients-title {
        font-size: 1.8rem;
    }

    .patients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefit-icon-container {
        width: 80px;
        height: 80px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-text {
        font-size: 0.95rem;
    }

    .cta-text {
        font-size: 1.5rem;
        order: 2;
    }

    .cta-btn {
        width: fit-content;
        max-width: 320px;
        justify-content: center;
        font-size: 1.05rem;
        order: 1;
    }

    .map-container {
        height: 380px;
        border-radius: 24px;
    }
}

@media (max-width: 576px) {
    .advanced-equipment {
        padding: 2.5rem 1.2rem;
    }

    .equipment-title {
        font-size: 1.5rem;
    }

    .equipment-intro,
    .equipment-summary {
        font-size: 0.95rem;
    }

    .benefit-item {
        padding: 0.7rem 1rem;
    }

    .benefit-item span {
        font-size: 0.9rem;
    }

    .equipment-subtitle {
        font-size: 1.4rem;
    }

    .equipment-content p {
        font-size: 0.95rem;
    }

    .equipment-dots {
        width: 90px;
    }

    .control-system {
        padding: 2.5rem 1.2rem;
    }

    .control-title {
        font-size: 1.6rem;
    }

    .control-intro,
    .control-summary {
        font-size: 0.95rem;
    }

    .why-us {
        padding: 2.5rem 1.2rem;
    }

    .why-us-title {
        font-size: 1.6rem;
    }

    .why-us-intro,
    .why-us-description {
        font-size: 0.95rem;
    }

    .for-patients {
        padding: 2.5rem 1.2rem;
    }

    .patients-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .patients-grid {
        gap: 1.2rem;
    }

    .benefit-text {
        font-size: 0.9rem;
    }

    .cta-text {
        font-size: 1.4rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 0.65rem 1.8rem 0.65rem 0.65rem;
    }

    .cta-btn::before {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .advanced-equipment {
        padding: 2rem 1rem;
    }

    .equipment-title {
        font-size: 1.35rem;
    }

    .equipment-intro,
    .equipment-summary {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .benefit-item {
        padding: 0.6rem 0.9rem;
    }

    .benefit-item svg {
        width: 20px;
        height: 20px;
    }

    .benefit-item span {
        font-size: 0.85rem;
    }

    .equipment-subtitle {
        font-size: 1.3rem;
    }

    .equipment-content p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .control-system {
        padding: 2rem 1rem;
    }

    .control-title {
        font-size: 1.45rem;
    }

    .control-intro,
    .control-summary {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .why-us {
        padding: 2rem 1rem;
    }

    .why-us-title {
        font-size: 1.45rem;
    }

    .why-us-intro,
    .why-us-description {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .for-patients {
        padding: 2rem 1rem;
    }

    .patients-title {
        font-size: 1.45rem;
        margin-bottom: 1.5rem;
    }

    .patients-grid {
        gap: 1rem;
    }

    .benefit-icon-container {
        width: 70px;
        height: 70px;
    }

    .benefit-icon {
        width: 35px;
        height: 35px;
    }

    .benefit-text {
        font-size: 0.85rem;
    }

    .cta-text {
        font-size: 1.3rem;
    }

    .cta-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem 0.6rem 0.6rem;
    }

    .cta-btn::before {
        width: 40px;
        height: 40px;
    }

    .map-container {
        height: 320px;
        border-radius: 20px;
    }
}
