/* Hero Section - Base Styles */
.hero-section {
    position: relative;
    background: #f9f9f9;
    padding: 40px 0 50px;
}

.hero-section .container {
    max-width: 1200px;
    padding: 0;
}

.hero-section .row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-section .col-lg-6 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Content & Typography */
.hero-content {
    text-align: center;
}

/* Simplified heading styles using new heading system variables */
.hero-section h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--heading-color-primary);
    line-height: var(--heading-line-height-tight);
    margin-bottom: var(--heading-margin-bottom);
}

.hero-section h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-medium);
    line-height: var(--heading-line-height-normal);
    color: var(--heading-color-primary);
    margin-bottom: 16px;
}

.hero-section p {
    font-size: 18px;
    opacity: 0.8;
    color: #000;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Hero Image & CTA */
.hero-image-col {
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.hero-cta {
    margin-top: 24px;
}

/* Hero CTA button spacing - using systematic button approach */
.hero-cta .btn.btn-primary,
.hero-cta .btn.btn-secondary {
    margin-right: var(--btn-margin, 12px);
    margin-bottom: var(--btn-margin, 12px);
}

/* Hero responsive styles moved to responsive-mobile.css to avoid duplication */