/* Example CSS file */ 
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
}

body {
    font-family: 'Lato';
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background-color: #fff;
    overflow-x: hidden;
}

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

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

.site-wrapper {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.main-container {
    position: relative;
    transition: transform 0.3s ease;
    min-height: 100vh;
    background-color: #fff;
}

.main-container.shifted {
    transform: translateX(280px);
}

body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.hero-section {
    position: relative;
    min-height: 469px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 264px 40px 204px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-text {
    width: 50%;
    color: #fff;
    padding: 0 24px 14px;
}

.hero-text .divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 11px 0;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    padding: 0 0 2px;
}

.hero-description {
    font-family: 'Maven Pro';
    font-weight: 400;
    font-size: 15px;
    margin-top: 0;
}

.hero-description p {
    margin-bottom: 0;
    color: #fff;
}

.hero-description .highlight {
    color: #f50505;
    font-weight: bold;
    margin-top: 1em;
}

.hero-description .highlight + p,
.hero-description .highlight + p + p {
    font-weight: bold;
}

.more-link {
    color: #bb0000;
    font-weight: 700;
    text-decoration: underline;
}

.three-columns {
    background-color: rgba(255, 255, 255, 1);
    padding: 60px 16px;
    position: relative;
}

.three-columns::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    pointer-events: none;
}

.columns-wrapper {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

.column {
    flex: 1;
    text-align: left;
    color: #111;
}

.column-image {
    margin-bottom: 15px;
}

.column-image img {
    width: 100%;
    border-radius: 0;
}

.column h3 {
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 15px;
    padding: 0;
    background-color: transparent;
    color: rgba(204,0,0,1);
}

.column-text {
    font-family: 'Maven Pro';
    font-size: 15px;
    font-weight: 400;
    background-color: transparent;
}

.column-text a {
    text-decoration: underline;
    color: rgba(204,0,0,1);
}

.column-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px;
        min-height: auto;
    }
    
    .hero-content {
        justify-content: center;
    }
    
    .hero-text {
        width: 100%;
        margin-top: -54px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .three-columns {
        padding: 40px 16px;
    }
    
    .columns-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}
