:root {
    --green: #0b6b3a;
    --gold: #c59b2a;
    --cream: #fbf6ea;
    --dark: #12321a
}

* {
    box-sizing: border-box
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    color: var(--dark);
    background: var(--cream)
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: linear-gradient(90deg, rgba(11, 107, 58, 0.95), rgba(7, 84, 46, 0.95));
    color: #fff;
    flex-wrap: wrap
}

.header .left,
.header .center,
.header .right {
    display: flex;
    align-items: center;
    gap: 12px
}

.header img {
    height: 72px
}

.nav {
    background: #fff;
    padding: 8px 24px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eee
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap
}

.nav a {
    color: var(--dark);
    text-decoration: none;
    padding: 8px 10px;
    font-weight: 600;
    display: inline-block;
}

.dropdown {
    position: relative
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 36px;
    left: 0;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 8px;
    border-radius: 6px;
    min-width: 12rem;
}

.dropdown:hover .dropdown-content {
    display: block
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px
}

.hero {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    flex-wrap: wrap
}

.hero img {
    width: 48%;
    border-radius: 12px;
    object-fit: cover;
    width: 100%
}

.hero .info h1 {
    margin: 0;
    font-size: 28px
}

.cta {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.card {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06)
}

.doctors .doc {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 8px
}

.doctors img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px
}

.footer {
    background: var(--dark);
    color: #fff;
    padding: 18px;
    text-align: center
}

.ticker {
    background: var(--gold);
    color: var(--dark);
    padding: 8px 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 12px;
}

.ticker p {
    white-space: nowrap;
    animation: scroll 18s linear infinite;
    margin: 0;
}

.hero .info {
     width: 100%
}

@keyframes scroll {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

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

    .hero {
        flex-direction: column
    }

    .header img {
        height: 56px
    }
}