:root {
    --primary: #0c766e;
    --primary-dark: #075f59;
    --primary-soft: #dff4f1;
    --secondary: #163a5f;

    --background: #ffffff;
    --background-soft: #f4f8f8;
    --surface: #ffffff;

    --text: #142222;
    --text-soft: #607171;
    --text-light: #879595;

    --border: #dfe9e8;
    --shadow: 0 24px 70px rgba(16, 59, 58, 0.12);

    --container: 1180px;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Manrope", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 105px 0;
}

/* Demo notice */

.demo-notice {
    position: relative;
    z-index: 1100;
    background: #102323;
    color: #d8e7e6;
}

.demo-notice-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

.demo-notice a {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
}

/* Header */

.site-header {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 17px 0;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 35px rgba(27, 63, 62, 0.08);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.brand-icon {
    width: 37px;
    height: 37px;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 23px;
}

.brand-name {
    font-size: 20px;
}

.brand-name span {
    color: var(--primary);
}

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

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

.navigation a {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.navigation a:hover,
.navigation a.active {
    color: var(--primary);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
}

.mobile-menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: var(--text);
}

/* Buttons */

.button {
    min-height: 52px;
    padding: 8px 10px 8px 21px;
    border: none;
    border-radius: 11px;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 27px;
    font-size: 14px;
    font-weight: 700;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.button span {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    font-size: 17px;
}

.button-small {
    min-height: 43px;
    padding: 9px 17px;
    gap: 10px;
    font-size: 12px;
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 810px;
    padding: 185px 0 95px;
    background:
        linear-gradient(
            115deg,
            #eff9f7 0%,
            #f8fbfb 58%,
            #eaf6f5 100%
        );
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-one {
    top: -140px;
    right: -130px;
    width: 500px;
    height: 500px;
    background: rgba(12, 118, 110, 0.07);
}

.hero-shape-two {
    left: -180px;
    bottom: -210px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(12, 118, 110, 0.04);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 75px;
}

.eyebrow,
.section-label {
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(12, 118, 110, 0.11);
}

.hero-content h1 {
    max-width: 690px;
    font-family: var(--font-heading);
    font-size: clamp(50px, 5.6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 630px;
    margin-top: 26px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 37px;
    display: flex;
    align-items: center;
    gap: 27px;
}

.secondary-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.secondary-link span,
.text-link span {
    color: var(--primary);
}

.hero-features {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 42px;
}

.hero-features div {
    display: flex;
    flex-direction: column;
}

.hero-features strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 24px;
}

.hero-features span {
    color: var(--text-soft);
    font-size: 11px;
}

.hero-visual {
    position: relative;
    min-height: 530px;
}

.doctor-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 34px;
    background: #dcefed;
    box-shadow: var(--shadow);
}

.doctor-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.hero-visual:hover .doctor-visual img {
    transform: scale(1.035);
}

.doctor-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 43, 42, 0.75),
            rgba(7, 43, 42, 0.02) 65%
        );
}

.doctor-image-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #ffffff;
}

.doctor-image-caption span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.doctor-image-caption strong {
    display: block;
    max-width: 310px;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.15;
}

.floating-card {
    position: absolute;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(33, 79, 77, 0.14);
    backdrop-filter: blur(13px);
}

.availability-card {
    left: -45px;
    bottom: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-icon {
    width: 37px;
    height: 37px;
    border-radius: 11px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card span {
    color: var(--text-soft);
    font-size: 10px;
}

.rating-card {
    top: 55px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.rating-card > strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 27px;
}

.rating-card .stars {
    color: #f2ac3b;
    font-size: 10px;
}

.rating-card small {
    color: var(--text-soft);
    font-size: 9px;
}

/* Partner section */

.partners-section {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
}

.partners-section p {
    margin-bottom: 23px;
    color: var(--text-light);
    text-align: center;
    font-size: 11px;
}

.partner-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
}

/* Shared section headings */

.section-heading {
    margin-bottom: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
}

.section-heading h2,
.about-content h2,
.appointment-copy h2,
.testimonial-intro h2,
.contact-card h2 {
    max-width: 690px;
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.section-heading > p {
    max-width: 420px;
    color: var(--text-soft);
}

/* About */

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
}

.medical-image {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    border-radius: 28px;
    background: #dcefed;
}

.medical-image > img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.medical-image:hover > img {
    transform: scale(1.035);
}

.medical-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 64, 61, 0.88),
            rgba(7, 64, 61, 0.02) 65%
        );
}

.medical-image-copy {
    position: absolute;
    left: 34px;
    bottom: 34px;
    color: #ffffff;
}

.medical-image-copy strong,
.medical-image-copy span {
    display: block;
}

.medical-image-copy strong {
    font-family: var(--font-heading);
    font-size: 27px;
}

.medical-image-copy span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.experience-card {
    position: absolute;
    right: -42px;
    bottom: 65px;
    width: 150px;
    padding: 20px;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 34px;
}

.experience-card span {
    color: var(--text-soft);
    font-size: 11px;
}

.about-content > p {
    margin-top: 22px;
    color: var(--text-soft);
    font-size: 16px;
}

.about-points {
    margin: 36px 0;
    display: grid;
    gap: 23px;
}

.about-points > div {
    display: flex;
    gap: 15px;
}

.about-points > div > span {
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
}

.about-points strong {
    font-size: 14px;
}

.about-points p {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 12px;
}

/* Departments */

.departments-section {
    background: var(--background-soft);
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.department-card {
    min-height: 335px;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.department-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 45px rgba(20, 80, 77, 0.10);
}

.department-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 38px;
    border-radius: 15px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 21px;
    font-weight: 800;
}

.department-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 20px;
}

.department-card p {
    color: var(--text-soft);
    font-size: 12px;
}

.department-card a {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

/* Appointment */

.appointment-section {
    background: #ffffff;
}

.appointment-card {
    padding: 65px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(255, 255, 255, 0.08),
            transparent 34%
        ),
        var(--secondary);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    color: #ffffff;
}

.light-label {
    color: #7fddd5;
}

.appointment-copy p {
    max-width: 480px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.68);
}

.appointment-contact {
    margin-top: 45px;
    display: grid;
    gap: 17px;
}

.appointment-contact div {
    display: flex;
    flex-direction: column;
}

.appointment-contact span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    text-transform: uppercase;
}

.appointment-contact strong {
    margin-top: 3px;
    font-size: 13px;
}

.appointment-form {
    padding: 30px;
    border-radius: 21px;
    background: #ffffff;
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    background: #f9fbfb;
    color: var(--text);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 47px;
    padding: 0 13px;
}

.form-group textarea {
    min-height: 105px;
    padding: 12px 13px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(12, 118, 110, 0.10);
}

.form-button {
    width: 100%;
}

.form-message {
    min-height: 20px;
    margin-top: 12px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

/* Doctors */

.doctor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.doctor-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(20, 80, 77, 0.10);
}

.doctor-photo {
    position: relative;
    min-height: 355px;
    overflow: hidden;
    background: #dcefed;
}

.doctor-photo img {
    width: 100%;
    height: 355px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.65s ease;
}

.doctor-card:hover .doctor-photo img {
    transform: scale(1.045);
}

.doctor-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(9, 45, 44, 0.22),
            transparent 55%
        );
}

.doctor-details {
    padding: 24px;
}

.doctor-details > span {
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.doctor-details h3 {
    margin: 6px 0 17px;
    font-family: var(--font-heading);
    font-size: 19px;
}

.doctor-details a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
}

.doctor-details a span {
    color: var(--primary);
}

/* Testimonials */

.testimonial-section {
    background: var(--background-soft);
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
}

.testimonial-intro p {
    max-width: 420px;
    margin-top: 20px;
    color: var(--text-soft);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.testimonial-card {
    min-height: 320px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    color: var(--primary);
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 1;
}

.testimonial-card > p {
    color: var(--text-soft);
    font-size: 14px;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.testimonial-author > span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author strong {
    font-size: 12px;
}

.testimonial-author small {
    color: var(--text-light);
    font-size: 10px;
}

/* Contact */

.contact-card {
    padding: 65px;
    border-radius: 28px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 55px;
}

.contact-card p {
    max-width: 570px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.contact-details {
    min-width: 280px;
    display: grid;
    gap: 18px;
}

.contact-details div {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.contact-details span,
.contact-details strong {
    display: block;
}

.contact-details span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    text-transform: uppercase;
}

.contact-details strong {
    margin-top: 4px;
    font-size: 13px;
}

/* Footer */

.site-footer {
    padding: 75px 0 24px;
    background: #102323;
    color: #ffffff;
}

.footer-grid {
    padding-bottom: 55px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 45px;
}

.footer-about p {
    max-width: 380px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 8px;
    font-size: 12px;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.57);
    font-size: 11px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
}

.footer-bottom a {
    display: inline-flex;
    gap: 7px;
}

/* Floating appointment button */

.floating-appointment-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    min-height: 48px;
    padding: 7px 17px 7px 7px;
    border-radius: 50px;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(12, 118, 110, 0.28);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
}

.floating-appointment-button span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    font-size: 19px;
}

/* Responsive */

@media (max-width: 980px) {
    .mobile-menu-button {
        display: block;
    }

    .navigation-wrapper {
        position: fixed;
        top: 92px;
        left: 20px;
        right: 20px;
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .navigation-wrapper.open {
        display: flex;
    }

    .navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .navigation a {
        display: block;
        padding: 11px;
        border-radius: 8px;
    }

    .navigation a:hover,
    .navigation a.active {
        background: var(--primary-soft);
    }

    .hero-grid,
    .about-grid,
    .appointment-card,
    .testimonial-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 580px;
    }

    .about-grid {
        gap: 65px;
    }

    .experience-card {
        right: 25px;
    }

    .department-grid {
        grid-template-columns: 1fr 1fr;
    }

    .doctor-grid {
        grid-template-columns: 1fr 1fr;
    }

    .doctor-card:last-child {
        grid-column: 1 / 3;
    }

    .contact-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .demo-notice-inner {
        min-height: 50px;
    }

    .demo-notice p,
    .demo-notice a {
        font-size: 9px;
    }

    .site-header {
        top: 50px;
    }

    .site-header.scrolled {
        top: 0;
    }

    .hero-section {
        padding: 160px 0 75px;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-features {
        gap: 22px;
        flex-wrap: wrap;
    }

    .hero-visual {
        min-height: 470px;
    }

    .doctor-visual {
        border-radius: 24px;
    }

    .doctor-image-caption {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .availability-card {
        left: 5px;
        bottom: 20px;
    }

    .rating-card {
        top: 25px;
        right: 5px;
    }

    .partner-list {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .partner-list span {
        white-space: nowrap;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .medical-image,
    .medical-image > img {
        min-height: 470px;
        height: 470px;
    }

    .department-grid,
    .doctor-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .doctor-card:last-child {
        grid-column: auto;
    }

    .appointment-card,
    .contact-card {
        padding: 36px 23px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .doctor-photo,
    .doctor-photo img {
        min-height: 290px;
        height: 290px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / 3;
    }

    .footer-column:last-child {
        grid-column: 1 / 3;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-appointment-button {
        right: 14px;
        bottom: 14px;
    }
}