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

:root {
    --plum-deep: #5C1A6B;
    --plum: #7B2D8E;
    --plum-light: #9B4DB8;
    --plum-soft: #F3E8F8;
    --plum-pale: #FBF5FD;
    --amber: #D4880F;
    --amber-light: #E8A835;
    --amber-soft: #FFF3DC;
    --amber-pale: #FFFBF5;
    --cream: #FFFAF5;
    --warm-gray: #6B5E6D;
    --warm-gray-light: #9B8E9D;
    --text-dark: #2D1A32;
    --text-body: #4A3650;
    --text-muted: #8A7590;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(92, 26, 107, 0.08);
    --shadow-md: 0 4px 20px rgba(92, 26, 107, 0.12);
    --shadow-lg: 0 8px 40px rgba(92, 26, 107, 0.16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --font-body: 'Nunito', sans-serif;
    --font-display: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    color: var(--plum);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--amber);
}

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(123, 45, 142, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(123, 45, 142, 0.45);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--plum);
    border-color: var(--plum-light);
}

.btn-secondary:hover {
    background: var(--plum-soft);
    color: var(--plum);
    transform: translateY(-2px);
}

.btn-phone {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212, 136, 15, 0.35);
    padding: 12px 22px;
    font-size: 0.88rem;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 136, 15, 0.45);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
}

/* ─── SECTION TAG ─── */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

/* ─── SIDE NAV ─── */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-light) 100%);
    display: flex;
    flex-direction: column;
    padding: 28px 20px;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.side-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.side-nav ul li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.side-nav ul li a:hover,
.side-nav ul li a.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.nav-cta {
    margin-bottom: 20px;
}

.nav-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-location svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── MENU TOGGLE ─── */
.menu-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1100;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--plum);
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    box-shadow: var(--shadow-md);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45, 26, 50, 0.5);
    z-index: 999;
    backdrop-filter: blur(4px);
}

/* ─── MAIN ─── */
main {
    margin-left: 220px;
}

section {
    padding: 80px 48px;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--plum);
    top: -120px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--amber);
    bottom: -60px;
    left: 20%;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--plum-light);
    top: 40%;
    right: 35%;
}

.hero-content {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--plum-soft) 0%, var(--amber-soft) 100%);
    color: var(--plum);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--plum) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.12rem;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--plum);
}

.stat span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: var(--radius-xl);
    width: 420px;
    height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 260px;
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum) 0%, var(--amber) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.hero-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.4;
}

/* ─── ABOUT ─── */
.about {
    display: flex;
    align-items: center;
    gap: 56px;
    background: var(--white);
}

.about-image-wrapper {
    flex: 0 0 auto;
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-xl);
    width: 440px;
    height: 360px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 16px rgba(212, 136, 15, 0.4);
}

.about-badge svg {
    width: 18px;
    height: 18px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 20px;
}

.about-content > p {
    margin-bottom: 16px;
    color: var(--text-body);
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.about-features li svg {
    width: 18px;
    height: 18px;
    color: var(--plum);
    flex-shrink: 0;
}

/* ─── SERVICES ─── */
.services {
    background: linear-gradient(180deg, var(--plum-pale) 0%, var(--cream) 100%);
}

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 52px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(123, 45, 142, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 45, 142, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--plum-soft) 0%, var(--amber-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--plum);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── GALLERY ─── */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img {
    height: 380px;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(5) img,
.gallery-item:nth-child(6) img {
    height: 260px;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92, 26, 107, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ─── SCHEDULE ─── */
.schedule {
    display: flex;
    align-items: center;
    gap: 56px;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 100%);
    color: var(--white);
}

.schedule-content {
    flex: 1;
}

.schedule-content .section-tag {
    color: var(--amber-light);
}

.schedule-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--white);
    margin-bottom: 14px;
}

.schedule-content > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.schedule-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 8px;
    backdrop-filter: blur(10px);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    transition: background 0.3s;
}

.schedule-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.schedule-row.closed {
    opacity: 0.5;
}

.schedule-row .day {
    font-weight: 700;
    font-size: 0.95rem;
}

.schedule-row .time {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--amber-light);
}

.schedule-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.schedule-note svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--amber-light);
}

.schedule-note a {
    color: var(--amber-light);
    text-decoration: underline;
}

.schedule-image {
    flex: 0 0 auto;
}

.schedule-image img {
    border-radius: var(--radius-xl);
    width: 380px;
    height: 460px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    opacity: 0.9;
}

/* ─── CONTACT ─── */
.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--plum-soft) 0%, var(--amber-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--plum);
}

.contact-card strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-card a {
    color: var(--plum);
    font-weight: 600;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--plum-soft);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--plum-pale);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(123, 45, 142, 0.1);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--plum-soft) 0%, var(--amber-soft) 100%);
    border-radius: var(--radius-sm);
    color: var(--plum-deep);
    font-weight: 600;
    font-size: 0.92rem;
}

.form-success svg {
    width: 22px;
    height: 22px;
    color: var(--plum);
    flex-shrink: 0;
}

/* ─── FOOTER ─── */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 56px 48px 0;
    margin-left: 220px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo svg {
    width: 36px;
    height: 36px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--amber-light);
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--amber-light);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .hero-image img {
        width: 360px;
        height: 460px;
    }

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

@media (max-width: 1024px) {
    main {
        margin-left: 0;
    }

    .side-nav {
        transform: translateX(-100%);
    }

    .side-nav.open {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .overlay.open {
        display: block;
    }

    footer {
        margin-left: 0;
    }

    section {
        padding: 60px 24px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        width: 280px;
        height: 340px;
    }

    .hero-card {
        left: 10px;
        bottom: -10px;
    }

    .about {
        flex-direction: column;
        gap: 36px;
    }

    .about-image-wrapper img {
        width: 100%;
        height: 280px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .schedule {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }

    .schedule-image img {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    section {
        padding: 48px 18px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero-image img {
        width: 100%;
        height: 300px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(4) img {
        height: 240px;
    }

    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(5) img,
    .gallery-item:nth-child(6) img {
        height: 180px;
    }

    .contact-form {
        padding: 24px;
    }

    .schedule-image {
        display: none;
    }
}
