/* ==========================================================================
   Shree Ganesh Thrift and Credit Co-operative Society Ltd.
   Modern Professional Design System (assets/css/modern-theme.css)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary: #0A2540;
    --primary-light: #12375F;
    --primary-dark: #061729;
    --secondary: #059669;
    --secondary-light: #10B981;
    --secondary-dark: #047857;
    --accent: #D97706;
    --accent-light: #F59E0B;
    --accent-gold: #EAB308;

    /* Neutrals */
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-alt: #F1F5F9;
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0A2540 0%, #164270 100%);
    --grad-emerald: linear-gradient(135deg, #047857 0%, #10B981 100%);
    --grad-gold: linear-gradient(135deg, #B45309 0%, #F59E0B 100%);
    --grad-hero: linear-gradient(135deg, rgba(10, 37, 64, 0.94) 0%, rgba(15, 23, 42, 0.88) 100%);
    --grad-surface: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(10, 37, 64, 0.2);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & typography */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.65;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-dark);
}

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

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.site-topbar {
    background-color: var(--primary-dark);
    color: #E2E8F0;
    font-size: 0.815rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar a {
    color: #E2E8F0;
}

.site-topbar a:hover {
    color: var(--accent-light);
}

.topbar-badge {
    background: rgba(16, 185, 129, 0.18);
    color: #34D399;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.site-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 12px 0;
    transition: var(--transition-normal);
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    border: 2px solid var(--border-color);
}

.brand-info h1 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.brand-info p {
    font-size: 0.725rem;
    margin: 2px 0 0;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-link-custom {
    color: var(--text-main) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--secondary) !important;
    background-color: rgba(5, 150, 105, 0.08);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-brand-primary {
    background: var(--grad-primary);
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.25);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.35);
    color: #FFFFFF !important;
}

.btn-brand-secondary {
    background: var(--grad-emerald);
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-brand-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
    color: #FFFFFF !important;
}

.btn-brand-outline {
    background: transparent;
    color: var(--primary) !important;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-brand-outline:hover {
    background: var(--primary);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.btn-brand-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-brand-outline-light:hover {
    background: #FFFFFF;
    color: var(--primary) !important;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-premium {
    position: relative;
    background: var(--grad-hero), url('https://res.cloudinary.com/dpx9xzgf8/image/upload/v1711016597/family-buying-car-dealer_zyahin.jpg') center/cover no-repeat;
    color: #FFFFFF;
    padding: 90px 0 100px;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 40%, rgba(5, 150, 105, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: #A7F3D0;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.15rem;
    color: #E2E8F0;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-card-quick {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-strip {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number.gold {
    color: var(--accent);
}

.stat-number.emerald {
    color: var(--secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-tag {
    display: inline-block;
    color: var(--secondary);
    background: rgba(5, 150, 105, 0.1);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   PRODUCT & SERVICE CARDS
   ========================================================================== */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 37, 64, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(10, 37, 64, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.product-card:hover .product-icon-wrap {
    background: var(--grad-primary);
    color: #FFFFFF;
}

.product-card.emerald:hover .product-icon-wrap {
    background: var(--grad-emerald);
    color: #FFFFFF;
}

.product-card.gold:hover .product-icon-wrap {
    background: var(--grad-gold);
    color: #FFFFFF;
}

.product-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(5, 150, 105, 0.12);
    color: var(--secondary-dark);
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-features-list li i {
    color: var(--secondary);
}

/* ==========================================================================
   LOAN CARDS (WITH IMAGES)
   ========================================================================== */
.loan-card-modern {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-normal);
}

.loan-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.loan-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.loan-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.loan-card-modern:hover .loan-img-wrap img {
    transform: scale(1.08);
}

.loan-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.loan-interest-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(10, 37, 64, 0.85);
    color: #FFFFFF;
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

/* ==========================================================================
   INTERACTIVE CALCULATOR
   ========================================================================== */
.calculator-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.calc-nav-tabs {
    display: flex;
    background: var(--bg-alt);
    padding: 6px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    gap: 6px;
}

.calc-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.925rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.calc-tab-btn.active {
    background: #FFFFFF;
    color: var(--primary);
    box-shadow: var(--shadow-xs);
}

.calc-control-group {
    margin-bottom: 24px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.calc-label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.925rem;
}

.calc-value-display {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    background: var(--bg-alt);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.calc-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #CBD5E1;
    outline: none;
    -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.4);
    transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--secondary-dark);
}

.calc-result-box {
    background: var(--grad-primary);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: #FFFFFF;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-result-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: #FDE68A;
    line-height: 1.1;
    margin: 8px 0;
}

/* ==========================================================================
   LEADERSHIP & BOARD MEMBERS
   ========================================================================== */
.member-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-normal);
    height: 100%;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 37, 64, 0.15);
}

.member-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    border: 4px solid var(--bg-alt);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.member-card:hover .member-avatar {
    border-color: var(--secondary-light);
    transform: scale(1.05);
}

.member-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary);
}

.member-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.member-quote {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* ==========================================================================
   BRANCH CARDS
   ========================================================================== */
.branch-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 26px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-normal);
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(5, 150, 105, 0.3);
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.branch-title {
    font-size: 1.25rem;
    margin: 0;
    color: var(--primary);
}

.branch-badge {
    background: rgba(10, 37, 64, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.branch-badge.head {
    background: rgba(217, 119, 6, 0.15);
    color: var(--accent);
}

.branch-detail-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.branch-detail-row i {
    color: var(--secondary);
    margin-top: 4px;
}

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    aspect-ratio: 4/3;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.85) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #FFFFFF;
}

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

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 32px;
    box-shadow: var(--shadow-xs);
    height: 100%;
    position: relative;
}

.testimonial-stars {
    color: var(--accent-light);
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--primary-dark);
    color: #CBD5E1;
    padding: 70px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer h6 {
    color: #FFFFFF;
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #64748B;
}

.social-pill {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #E2E8F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: var(--transition-fast);
}

.social-pill:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #FFFFFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

/* Lightbox Modal */
.modal-lightbox .modal-content {
    background: transparent;
    border: none;
}

.modal-lightbox .modal-body {
    padding: 0;
    text-align: center;
}

.modal-lightbox img {
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.35rem;
    }
    .stats-strip {
        margin-top: 20px;
    }
    .hero-premium {
        padding: 60px 0 70px;
    }
}
