/* =========================================================
   درمانگاه خیریه حضرت رقیه (س)
   Main Stylesheet
   ========================================================= */

/* =========================
   RESET
   ========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Vazirmatn", Tahoma, sans-serif;
    background: #f5f9ff;
    color: #333;
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: "Vazirmatn", Tahoma, sans-serif;
}

/* =========================
   NAVBAR
   ========================= */

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    direction: rtl;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
}

nav > a {
    flex: 0 0 auto;
    color: #0d47a1;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    padding: 9px 15px;
    border-radius: 25px;
    transition: 0.3s ease;
}

nav > a:hover {
    background: #1565c0;
    color: #fff;
    transform: translateY(-2px);
}

/* =========================
   LANGUAGE SWITCHER
   ========================= */

.language-switcher {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 14px;
    direction: rtl;
}

.language-switcher button {
    border: none;
    background: transparent;
    color: #0d47a1;
    font-family: "Vazirmatn", Tahoma, sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.25s ease;
}

.language-switcher button:hover {
    background: #1976d2;
    color: white;
    transform: translateY(-1px);
}

/* =========================
   HERO
   ========================= */

.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background:
        linear-gradient(
            135deg,
            #0d47a1,
            #1976d2,
            #26c6da
        );
    color: white;
    text-align: center;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.hero-logo {
    width: 210px;
    height: 210px;
    object-fit: cover;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    color: white;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    margin: 20px auto 35px;
    color: white;
    font-size: 20px;
    line-height: 2;
}

/* =========================
   HERO BUTTONS
   ========================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons a,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 35px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary {
    background: white;
    color: #0d47a1;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #0d47a1;
    transform: translateY(-4px);
}

/* =========================
   GENERAL SECTIONS
   ========================= */

section {
    width: 90%;
    max-width: 1200px;
    margin: 70px auto;
}

section h2 {
    text-align: center;
    color: #0d47a1;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 35px;
}

/* =========================
   WELCOME
   ========================= */

.welcome {
    width: 85%;
    max-width: 1100px;
    margin: 60px auto;
    padding: 45px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.welcome h2 {
    color: #1976d2;
    font-size: 34px;
    margin-bottom: 20px;
}

.welcome p {
    max-width: 900px;
    margin: auto;
    color: #555;
    font-size: 18px;
    line-height: 2.2;
}

.welcome-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #1976d2;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

.welcome-btn:hover {
    background: #0d47a1;
    transform: translateY(-3px);
}

/* =========================
   SERVICES
   ========================= */

.services {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 30px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.12);
}

.services h2 {
    text-align: center;
    color: #1976d2;
    font-size: 32px;
    margin-bottom: 35px;
}

.cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

/* =========================
   CARDS
   ========================= */

.card {
    width: 230px;
    min-height: 250px;
    padding: 35px 25px;
    background: white;
    border-radius: 30px;
    border-top: 5px solid #26c6da;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(13, 71, 161, 0.18);
}

.animate-card {
    transition: 0.3s ease;
}

.animate-card:hover {
    transform: translateY(-10px);
}

/* =========================
   SERVICE ICON
   ========================= */

.icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 50%;
    color: #1976d2;
    font-size: 32px;
}

.card h3 {
    color: #0d47a1;
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
}

.card p {
    color: #555;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

/* =========================
   CONTACT INFO
   ========================= */

.info {
    width: 70%;
    max-width: 900px;
    margin: 50px auto;
    padding: 35px;
    background: white;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.info:hover {
    transform: translateY(-5px);
}

.info h2 {
    color: #1976d2;
    margin-bottom: 20px;
}

.info p {
    color: #555;
    font-size: 17px;
    line-height: 2.2;
    margin: 5px 0;
}

/* =========================
   CALL BUTTON
   ========================= */

.call-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #1976d2;
    color: white;
    border-radius: 12px;
    transition: 0.3s ease;
}

.call-button:hover {
    background: #0d47a1;
    transform: translateY(-2px);
}

/* =========================
   WHY US
   ========================= */

.why-us {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 30px;
}

.why-us h2 {
    text-align: center;
    color: #0d47a1;
    font-size: 32px;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.feature {
    width: 220px;
    padding: 30px 20px;
    background: white;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
}

.feature span {
    display: block;
    font-size: 45px;
    margin-bottom: 15px;
}

.feature h3 {
    color: #1976d2;
    margin-bottom: 8px;
}

.feature p {
    color: #555;
    line-height: 2;
}

/* =========================
   PAGE HEADERS
   ========================= */

.page-header,
.career-hero,
body > header:not(.hero) {
    background:
        linear-gradient(
            135deg,
            #0d47a1,
            #1976d2,
            #26c6da
        );
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 0 0 40px 40px;
}

.page-header h1,
.career-hero h1,
body > header:not(.hero) h1 {
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p,
.career-hero p,
body > header:not(.hero) p {
    color: white;
    font-size: 18px;
    opacity: 0.95;
}

/* =========================
   ABOUT PAGE
   ========================= */

.page-content {
    width: 85%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    line-height: 2.2;
}

.page-content h2 {
    color: #1976d2;
    margin-top: 25px;
    margin-bottom: 20px;
    padding-right: 12px;
    border-right: 5px solid #26c6da;
    text-align: right;
}

.page-content p {
    color: #444;
    font-size: 17px;
    line-height: 2.2;
    text-align: justify;
}

/* =========================
   DOCTORS / SERVICES CARDS
   ========================= */

.doctor-card img,
.card img {
    width: 200px !important;
    height: 200px !important;
    object-fit: contain;
    border-radius: 20px;
    margin: 0 auto 15px;
}

.services .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.services .card {
    width: 240px;
    min-height: 330px;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    overflow: hidden;
}

.services .card img {
    width: 100% !important;
    height: 230px !important;
    object-fit: contain;
    background: #f5f8ff;
    border-radius: 15px;
    margin-bottom: 15px;
}

.services .card h3 {
    color: #1976d2;
    font-size: 22px;
    margin-top: 10px;
}

.services .card p {
    color: #555;
    line-height: 1.8;
}

/* =========================
   DONATION
   ========================= */

.donation {
    width: 85%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 50px 30px;
    background: white;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.12);
}

.donation h2 {
    color: #0d47a1;
    font-size: 32px;
    margin-bottom: 20px;
}

.donation p {
    font-size: 18px;
    line-height: 2;
}

.payment-box {
    width: 100%;
    margin: 40px auto 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.number {
    direction: rtl;
    font-size: 32px !important;
    font-weight: 800;
    color: #1976d2;
    word-break: break-word;
}

.payment-box button {
    background: #1976d2;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 25px;
    transition: 0.3s;
}

.payment-box button:hover {
    background: #0d47a1;
}

/* =========================
   CAREERS
   ========================= */

.career-hero {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-overlay {
    width: 100%;
    max-width: 850px;
    margin: auto;
    padding: 40px;
}

.career-overlay h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.career-overlay p {
    font-size: 18px;
    line-height: 2;
}

.career-container {
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    padding: 35px;
    display: flex;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #f1f8ff,
        #e0f7fa
    );
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.career-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background: white;
    border: 1px solid rgba(25, 118, 210, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.career-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        #1976d2,
        #26c6da
    );
}

.career-card h2 {
    text-align: center;
    color: #1976d2;
    font-size: 34px;
    margin-bottom: 15px;
}

.career-description {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    line-height: 2;
    font-size: 16px;
}

.career-card form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.full-width {
    grid-column: 1 / -1;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.input-group label {
    display: block;
    color: #1976d2;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 15px;
}

.input-group label::before {
    content: "✦ ";
    color: #26c6da;
}

.input-group label.required-field::after {
    content: " *";
    color: #d62828;
    font-weight: 700;
    margin-right: 3px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    color: #333;
    font-family: "Vazirmatn", Tahoma, sans-serif;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.input-group textarea {
    resize: vertical;
    min-height: 140px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #1976d2;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(38, 198, 218, 0.15);
}

.input-group select option {
    font-family: "Vazirmatn", Tahoma, sans-serif;
}

input[type="file"] {
    padding: 12px;
    background: #fff;
}

.career-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.career-btn {
    border: none;
    background: #1976d2;
    color: white;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Vazirmatn", sans-serif;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.35s;
    box-shadow: 0 12px 30px rgba(21, 101, 192, 0.3);
}

.career-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(21, 101, 192, 0.4);
    background: #0d47a1;
}

.career-btn:active {
    transform: scale(0.98);
}

/* =========================
   FOOTER
   ========================= */

.footer,
footer {
    width: 100%;
    background: #0d47a1;
    color: white;
    margin-top: 60px;
    padding: 50px 20px 20px;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-box {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.footer-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-box p {
    color: white;
    line-height: 2;
    opacity: 0.9;
    margin-bottom: 5px;
}

.footer-box a {
    color: white;
    text-decoration: none;
    line-height: 2.5;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #8de7ff;
    padding-right: 8px;
}

.footer hr {
    max-width: 1200px;
    margin: 30px auto;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.copyright {
    text-align: center;
    color: white;
    opacity: 0.8;
    font-size: 14px;
}

/* =========================
   FLOATING MENU
   ========================= */

.floating-menu {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.35s;
    margin-bottom: 15px;
}

.floating-menu:hover .floating-items {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-items a {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: 0.3s;
}

.floating-items a:hover {
    transform: scale(1.12);
}

.floating-main {
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #1565c0,
        #26c6da
    );
    color: white;
    font-size: 38px;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(21, 101, 192, 0.35);
    transition: 0.35s;
}

.floating-main:hover {
    transform: rotate(135deg) scale(1.08);
}

/* =========================
   GENERAL BUTTONS
   ========================= */

button {
    font-family: "Vazirmatn", Tahoma, sans-serif;
}

button:hover {
    transform: translateY(-2px);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* ---------- Navbar ---------- */

    nav {
        position: sticky;
        top: 0;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        direction: rtl !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 5px !important;
        padding: 9px 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;
    }

    nav > a {
        display: inline-flex !important;
        flex: 0 0 auto !important;
        order: initial !important;
        direction: rtl !important;
        font-size: 13px !important;
        padding: 8px 10px !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    nav .language-switcher {
        display: inline-flex !important;
        flex: 0 0 auto !important;
        order: initial !important;
        margin: 0 !important;
        direction: rtl !important;
    }

    nav .language-switcher button {
        flex: 0 0 auto !important;
        font-size: 12px !important;
        padding: 7px 8px !important;
        white-space: nowrap !important;
    }

    /* ---------- Hero ---------- */

    .hero {
        min-height: 520px;
        padding: 60px 20px;
        border-radius: 0 0 35px 35px;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.6;
    }

    .hero p {
        font-size: 16px;
        line-height: 2;
        margin: 20px auto 30px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons a,
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* ---------- Sections ---------- */

    section {
        width: 94%;
        margin: 45px auto;
    }

    section h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    /* ---------- Welcome ---------- */

    .welcome {
        width: 92%;
        padding: 25px;
        margin: 40px auto;
    }

    .welcome h2 {
        font-size: 26px;
    }

    .welcome p {
        font-size: 16px;
        line-height: 2;
    }

    /* ---------- Services ---------- */

    .services {
        width: 92%;
        padding: 30px 15px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card,
    .services .card {
        width: 90%;
        max-width: 330px;
        min-height: 0;
        padding: 30px 20px;
    }

    .card p {
        font-size: 15px;
        word-break: normal;
        overflow-wrap: break-word;
    }

    /* ---------- Contact ---------- */

    .info {
        width: 90%;
        padding: 25px 20px;
    }

    .info p {
        font-size: 15px;
        overflow-wrap: break-word;
    }

    /* ---------- Page Header ---------- */

    .page-header,
    .career-hero,
    body > header:not(.hero) {
        padding: 55px 15px;
        border-radius: 0 0 30px 30px;
    }

    .page-header h1,
    .career-hero h1,
    body > header:not(.hero) h1 {
        font-size: 28px;
    }

    .page-header p,
    .career-hero p,
    body > header:not(.hero) p {
        font-size: 16px;
    }

    /* ---------- Page Content ---------- */

    .page-content {
        width: 92%;
        padding: 22px;
        margin: 30px auto;
    }

    .page-content h2 {
        font-size: 23px;
    }

    .page-content p {
        font-size: 15px;
        text-align: right;
    }

    /* ---------- Doctors ---------- */

    .doctor-card img,
    .card img {
        width: 180px !important;
        height: 180px !important;
    }

    .services .card img {
        height: 200px !important;
    }

    /* ---------- Donation ---------- */

    .donation {
        width: 92%;
        padding: 30px 20px;
    }

    .donation h2 {
        font-size: 26px;
    }

    .donation p {
        font-size: 15px;
    }

    .payment-box {
        width: 100%;
        padding: 20px;
    }

    .number {
        font-size: 20px !important;
        word-break: break-word;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    /* ---------- Careers ---------- */

    .career-overlay {
        padding: 25px 10px;
    }

    .career-overlay h1 {
        font-size: 30px;
    }

    .career-overlay p {
        font-size: 16px;
    }

    .career-container {
        width: 92%;
        padding: 15px;
    }

    .career-card {
        width: 100%;
        padding: 22px;
    }

    .career-card h2 {
        font-size: 26px;
    }

    .career-description {
        font-size: 15px;
    }

    .career-card form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .full-width {
        grid-column: auto;
    }

    .career-submit {
        grid-column: auto;
    }

    .career-btn {
        width: 100%;
    }

    /* ---------- Why Us ---------- */

    .why-us {
        width: 92%;
        padding: 35px 15px;
    }

    .feature {
        width: 90%;
        max-width: 330px;
    }

    /* ---------- Footer ---------- */

    .footer,
    footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-box {
        width: 100%;
        max-width: 350px;
    }

    /* ---------- Floating Menu ---------- */

    .floating-menu {
        bottom: 20px;
        left: 20px;
    }

    .floating-main {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .floating-items a {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}

/* =========================
   VERY SMALL SCREENS
   ========================= */

@media (max-width: 430px) {

    nav {
        gap: 3px !important;
        padding: 8px 5px !important;
    }

    nav > a {
        font-size: 12px !important;
        padding: 7px 8px !important;
    }

    nav .language-switcher button {
        font-size: 11px !important;
        padding: 6px 7px !important;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero-logo {
        width: 125px;
        height: 125px;
    }

    .hero h1 {
        font-size: 24px;
    }

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

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
    }
}