/* VERSION: 041726-1 */

/**
 * Custom CSS Overrides
 * Add site-specific CSS customizations here
 * This file loads AFTER main.css and will override any conflicting styles
 * Do NOT edit main.css - add your custom styles here instead
 */

/* Remove gradient from CTA sections - use brand color only */
.content-cta {
    background: var(--brand-color) !important;
}

/* Hero overlay - solid 20% transparent black instead of gradient */
.hero::after {
    background: rgba(0, 0, 0, 0.6) !important;
    background-image: none !important;
}

/* Hero Section Customizations */
.hero .container {
    text-align: center;
}

.hero h1 {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    max-width: 85%;
    margin: 0 auto 4rem auto;
    text-align: center;
}

/* Logo size adjustment */
.logo img {
    transform: scale(1.2);
    transform-origin: left center;
}
