/* 1. VARIABLES & BASIC SETUP */
:root {
    --white: #FFFFFF;
    --rayngreen: #76BC21;
    --raynpurple: #2C2A77;
    --grey0: #D9D9D9;
    --grey2: #8C8C8C;
    --grey3: #595959;
    --grey5: #262626;
    --bs-body-font-family: "Barlow", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--bs-body-font-family);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    background-color: var(--white);
    color: var(--grey3);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 2. HEADER */
.site-header {
    width: 100%;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--grey0);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* Changed from space-between */
    align-items: center;
}

.brand_logo a {
    display: block;
}

/* 3. MAIN CONTENT & TYPOGRAPHY */
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 2rem 4rem 2rem;
}

h1, h2, h3, strong {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    color: var(--raynpurple);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--grey0);
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--grey5);
}

.effective-date {
    text-align: center;
    color: var(--grey2);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--rayngreen);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--raynpurple);
}

/* 4. LIST & CONTACT STYLES */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1.25rem;
}

ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--rayngreen);
    font-size: 1.5rem;
    font-weight: 600;
}

ul li p {
    margin-bottom: 0;
}

.contact-info p {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

/* 5. RESPONSIVE DESIGN */
@media only screen and (max-width: 767px) {
    body {
        font-size: 1rem;
    }
    .site-header {
        padding: 1.5rem 1rem;
    }
    .container {
        margin: 1.5rem auto;
        padding: 0 1.5rem 3rem 1.5rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}