:root {
    /* Presidential Color Palette */
    --doby-charcoal: #2C3E50;
    --doby-gold: #D4AF37;
    --doby-gold-light: #FFD700;
    --doby-white: #FFFFFF;
    --doby-light-gray: #F8F9FA;
    --doby-dark-gray: #343A40;
    --doby-accent-blue: #3498DB;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Times New Roman', serif;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(44, 62, 80, 0.1);
    --shadow-md: 0 4px 12px rgba(44, 62, 80, 0.15);
    --shadow-lg: 0 8px 24px rgba(44, 62, 80, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* ============================================
 * GLOBAL STYLES & RESET
 * ============================================ */

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--doby-charcoal);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* ============================================
 * TYPOGRAPHY SYSTEM
 * ============================================ */

/* Presidential Headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--doby-charcoal);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--doby-charcoal) 0%, var(--doby-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--doby-gold);
    position: relative;
    padding-bottom: var(--space-md);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--doby-gold), var(--doby-gold-light));
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--doby-charcoal);
    border-left: 4px solid var(--doby-gold);
    padding-left: var(--space-md);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--doby-charcoal);
    font-weight: 600;
}

h5, h6 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--doby-dark-gray);
    font-weight: 600;
}

/* Academic Body Text */
p {
    margin-bottom: var(--space-md);
    color: var(--doby-charcoal);
    font-weight: 400;
}

p.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--doby-dark-gray);
    margin-bottom: var(--space-lg);
}

/* Academic Emphasis */
strong, b {
    font-weight: 700;
    color: var(--doby-charcoal);
}

em, i {
    font-style: italic;
    color: var(--doby-dark-gray);
}

/* Academic Citations */
cite, .citation {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--doby-gold);
    font-style: italic;
}

/* ============================================
 * PRESIDENTIAL HEADER & NAVIGATION
 * ============================================ */

.presidental-header {
    background: linear-gradient(135deg, var(--doby-charcoal) 0%, var(--doby-dark-gray) 100%);
    color: var(--doby-white);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1000;
}

.presidental-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--doby-gold), var(--doby-gold-light), var(--doby-gold));
}

.presidental-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.presidental-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--doby-gold);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.presidental-logo:hover {
    color: var(--doby-gold-light);
    transform: translateY(-2px);
}

.presidental-nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    margin: 0;
    padding: 0;
}

.presidental-nav-menu a {
    color: var(--doby-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.presidental-nav-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--doby-gold);
    transform: translateY(-2px);
}

.presidental-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--doby-gold);
    transition: width 0.3s ease;
}

.presidental-nav-menu a:hover::after {
    width: 80%;
}

/* ============================================
 * HERO SECTION WITH ACADEMIC AUTHORITY
 * ============================================ */

.academic-hero {
    background: linear-gradient(135deg, var(--doby-charcoal) 0%, var(--doby-dark-gray) 100%);
    color: var(--doby-white);
    padding: var(--space-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.academic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--doby-gold), var(--doby-gold-light), var(--doby-gold));
}

.academic-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.academic-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--doby-white) 0%, var(--doby-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--doby-gold);
    margin-bottom: var(--space-md);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Academic Credentials Badge */
.academic-credentials {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-xl) auto;
    max-width: 600px;
    text-align: center;
}

.academic-credentials h3 {
    color: var(--doby-gold);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    border: none;
    padding: 0;
}

.academic-credentials p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
}

.doi-badge {
    display: inline-block;
    background: var(--doby-gold);
    color: var(--doby-charcoal);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: var(--space-md);
    transition: all 0.3s ease;
}

.doi-badge:hover {
    background: var(--doby-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hero Call-to-Action */
.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.btn-presidential {
    background: linear-gradient(135deg, var(--doby-gold) 0%, var(--doby-gold-light) 100%);
    color: var(--doby-charcoal);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.btn-presidential:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, var(--doby-gold-light) 0%, var(--doby-gold) 100%);
}

.btn-academic {
    background: transparent;
    color: var(--doby-gold);
    border: 2px solid var(--doby-gold);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-academic:hover {
    background: var(--doby-gold);
    color: var(--doby-charcoal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
 * ACADEMIC SECTIONS & CONTENT BLOCKS
 * ============================================ */

.academic-section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.academic-section:nth-child(even) {
    background: var(--doby-light-gray);
}

.academic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-title {
    color: var(--doby-gold);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--doby-dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Academic Cards */
.academic-card {
    background: var(--doby-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--doby-gold);
    transition: all 0.3s ease;
    margin-bottom: var(--space-lg);
}

.academic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.academic-card h3 {
    color: var(--doby-gold);
    margin-bottom: var(--space-md);
    border: none;
    padding: 0;
}

.academic-card .card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--doby-charcoal);
    margin: var(--space-md) 0;
}

.academic-card .card-price span {
    font-size: 1rem;
    color: var(--doby-dark-gray);
    font-weight: 400;
}

/* Research Publications */
.research-publication {
    background: var(--doby-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--doby-gold);
    margin-bottom: var(--space-lg);
}

.research-publication h3 {
    color: var(--doby-charcoal);
    margin-bottom: var(--space-md);
    border: none;
    padding: 0;
}

.research-meta {
    color: var(--doby-dark-gray);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.research-meta strong {
    color: var(--doby-gold);
}

/* ============================================
 * ACADEMIC CREDENTIALS SECTION
 * ============================================ */

.credentials-section {
    background: linear-gradient(135deg, var(--doby-charcoal) 0%, var(--doby-dark-gray) 100%);
    color: var(--doby-white);
    padding: var(--space-xxl) 0;
    text-align: center;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.credential-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-5px);
    border-color: var(--doby-gold);
    box-shadow: var(--shadow-gold);
}

.credential-icon {
    font-size: 3rem;
    color: var(--doby-gold);
    margin-bottom: var(--space-md);
}

.credential-title {
    color: var(--doby-gold);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.credential-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

.credential-badge {
    display: inline-block;
    background: var(--doby-gold);
    color: var(--doby-charcoal);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
 * PRICING TABLES & SERVICE CARDS
 * ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.pricing-card {
    background: var(--doby-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--doby-gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--doby-gold);
    color: var(--doby-charcoal);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-title {
    color: var(--doby-charcoal);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--doby-gold);
    margin-bottom: var(--space-md);
}

.pricing-price span {
    font-size: 1rem;
    color: var(--doby-dark-gray);
}

.pricing-features {
    list-style: none;
    margin: var(--space-lg) 0;
    padding: 0;
}

.pricing-features li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--doby-light-gray);
    color: var(--doby-dark-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: 'âœ“';
    color: var(--doby-gold);
    font-weight: bold;
    margin-right: var(--space-sm);
}

/* ============================================
 * FORMS & INPUTS
 * ============================================ */

.academic-form {
    background: var(--doby-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    color: var(--doby-charcoal);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--doby-light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--doby-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--doby-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-button {
    background: linear-gradient(135deg, var(--doby-gold) 0%, var(--doby-gold-light) 100%);
    color: var(--doby-charcoal);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.presidental-footer {
    background: var(--doby-charcoal);
    color: var(--doby-white);
    padding: var(--space-xxl) 0 var(--space-xl);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--doby-gold), var(--doby-gold-light), var(--doby-gold));
    margin-bottom: var(--space-xl);
}

.footer-credentials {
    margin-bottom: var(--space-xl);
}

.footer-credentials h3 {
    color: var(--doby-gold);
    margin-bottom: var(--space-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
 * RESPONSIVE DESIGN
 * ============================================ */

@media (max-width: 768px) {
    .presidental-nav {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .presidental-nav-menu {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-presidential,
    .btn-academic {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .academic-container,
    .presidental-nav {
        padding: 0 var(--space-md);
    }
    
    .academic-hero {
        padding: var(--space-xl) 0;
    }
    
    .academic-section {
        padding: var(--space-xl) 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ============================================
 * ANIMATIONS & TRANSITIONS
 * ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes goldGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.gold-glow {
    animation: goldGlow 3s ease-in-out infinite;
}

/* Scroll animations */
.academic-card,
.credential-card,
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.academic-card.visible,
.credential-card.visible,
.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
 * UTILITY CLASSES
 * ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--doby-gold); }
.text-charcoal { color: var(--doby-charcoal); }
.text-white { color: var(--doby-white); }

.bg-gold { background-color: var(--doby-gold); }
.bg-charcoal { background-color: var(--doby-charcoal); }
.bg-light { background-color: var(--doby-light-gray); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.p-0 { padding: 0; }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

/* Premium positioning helper */
.premium-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--doby-gold), var(--doby-gold-light), var(--doby-gold));
    border-radius: 2px;
    margin: var(--space-lg) 0;
}

/* Academic emphasis */
.academic-emphasis {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid var(--doby-gold);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

/* Presidential quote */
.presidential-quote {
    background: var(--doby-charcoal);
    color: var(--doby-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    position: relative;
    margin: var(--space-xl) 0;
}

.presidential-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--doby-gold);
    font-family: var(--font-heading);
}

.presidential-quote p {
    color: var(--doby-white);
    font-size: 1.25rem;
    font-style: italic;
    margin: 0;
    padding-left: var(--space-lg);
}

/* Print styles */
@media print {
    .presidental-header,
    .academic-hero {
        background: var(--doby-white) !important;
        color: var(--doby-charcoal) !important;
    }
    
    .btn-presidential,
    .btn-academic {
        background: var(--doby-light-gray) !important;
        color: var(--doby-charcoal) !important;
        border: 2px solid var(--doby-charcoal) !important;
    }
}

/* ============================================
 * WORDPRESS-SPECIFIC OVERRIDES
 * ============================================ */

/* Override WordPress default styles */
.wp-block-heading h1,
.wp-block-heading h2,
.wp-block-heading h3,
.wp-block-heading h4,
.wp-block-heading h5,
.wp-block-heading h6 {
    font-family: var(--font-heading);
}

/* Gutenberg block compatibility */
.wp-block-group.academic-hero,
.wp-block-group.credentials-section {
    padding: var(--space-xxl) 0;
}

/* WooCommerce compatibility */
.woocommerce .products .product {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.woocommerce .products .product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Elementor compatibility */
.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-heading);
}

.elementor-widget-button .elementor-button {
    border-radius: var(--radius-xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Divi compatibility */
.et_pb_section {
    padding: var(--space-xxl) 0;
}

.et_pb_text h1,
.et_pb_text h2,
.et_pb_text h3 {
    font-family: var(--font-heading);
}