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

body {
    font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #ffffff;
    color: #1f2933;
    line-height: 1.6;
}

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

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f3f5;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    color: #f97316;
}

.nav-brand-text {
    font-weight: 700;
    font-size: 20px;
}

.main-nav {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.main-nav a {
    padding: 6px 10px;
    border-radius: 999px;
    color: #4b5563;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
    background-color: #f97316;
    color: #ffffff;
}

.hero-section {
    position: relative;
    background-image: url("/assets/banner.png");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(248, 113, 113, 0.5));
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 72px 0 64px;
}

.hero-text h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.hero-text p {
    font-size: 15px;
    max-width: 520px;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.4);
}

.btn-disabled {
    background-color: #e5e7eb;
    color: #6b7280;
    cursor: default;
}

.hero-image-wrapper {
    display: none;
}

.section {
    padding: 56px 0;
}

.section-alt {
    background-color: #f8fafc;
}

.section-title {
    font-size: 22px;
    margin-bottom: 24px;
    color: #111827;
}

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

.card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #111827;
}

.card p {
    font-size: 14px;
    color: #4b5563;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.card-link {
    display: block;
    border: 1px solid #e5e7eb;
}

.two-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.column {
    flex: 1;
}

.feature-list {
    margin-top: 12px;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-right: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: #f97316;
}

.info-card {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #ffffff;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 16px 35px rgba(249, 115, 22, 0.35);
}

.info-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

.info-card p {
    font-size: 14px;
}

.note-text {
    margin-top: 12px;
    font-size: 13px;
    color: #6b7280;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #111827;
}

.faq-item p {
    font-size: 14px;
    color: #4b5563;
}

.site-footer {
    background-color: #0f172a;
    color: #e5e7eb;
    padding: 24px 0;
    margin-top: 24px;
}

.footer-content {
    font-size: 13px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-text {
        max-width: 520px;
    }

    .hero-image-wrapper {
        display: block;
    }

    .hero-image {
        width: 320px;
        max-width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.5);
    }

    .cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .faq-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-column {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .main-nav {
        display: none;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .hero-section {
        background-position: center top;
    }
}
