:root {
    --primary-lavender: #E6E6FA;
    --soft-rose: #F4C2C2;
    --mint-cream: #F0FFF0;
    --powder-blue: #B0E0E6;
    --peach-puff: #FFDAB9;
    --thistle: #D8BFD8;
    --alice-blue: #F0F8FF;
    --misty-rose: #FFE4E1;
    --light-cyan: #E0FFFF;
    --lavender-blush: #FFF0F5;
    --gradient-primary: linear-gradient(135deg, var(--primary-lavender), var(--soft-rose), var(--mint-cream));
    --gradient-secondary: linear-gradient(45deg, var(--powder-blue), var(--peach-puff), var(--thistle));
    --header-gradient: linear-gradient(135deg, 
        var(--mint-cream) 0%, 
        var(--alice-blue) 15%, 
        var(--light-cyan) 30%, 
        var(--lavender-blush) 45%, 
        var(--primary-lavender) 60%, 
        var(--misty-rose) 75%, 
        var(--peach-puff) 90%, 
        var(--thistle) 100%);
    --text-primary: #2C2C2C;
    --text-secondary: #4A4A4A;
    --text-dark: #1A1A1A;
    --text-medium-dark: #333333;
    --accent-lavender: #9B7FD8;
    --accent-rosey: #C76985;
    --white-95: #F2F2F2;
    --white-90: #E6E6E6;
    --white-85: #D9D9D9;
    --black-10: #1A1A1A;
    --black-15: #262626;
    --shadow-light: #00000019;
    --shadow-medium: #00000026;
    --shadow-dark: #0000003D;
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-primary);
    background-attachment: fixed;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
}

/* Typography - Specific targeting to prevent inheritance issues */
.logo, .subtitle {
    font-family: 'Luxurious Script', 'Great Vibes', 'Dancing Script', cursive !important;
}

h1, h2, h3, h4 {
    font-family: 'Luxurious Script', 'Great Vibes', 'Dancing Script', cursive !important;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; letter-spacing: 2px; }
h2 { font-size: 2.8rem; letter-spacing: 1.5px; }
h3 { font-size: 2.2rem; letter-spacing: 1px; }
h4 { font-size: 1.8rem; letter-spacing: 0.5px; }

/* All other text uses Roboto */
p, a, li, span, div, td, th, label, input, textarea {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px;
    line-height: 1.6;
}

/* Links */
a {
    color: #5A9BD4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-rosey);
    text-decoration: underline;
}

/* Lists - REDUCED SPACING */
ul {
    margin: 0.5rem 0;
}

li {
    margin-bottom: 0.2rem;
}

/* Divs - REDUCED SPACING */
div {
    margin-bottom: 0.5rem;
}

/* Floating particles animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-lavender);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Header */
header {
    position: relative;
    z-index: 100;
    background: var(--header-gradient);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px var(--shadow-light);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--powder-blue), var(--accent-lavender), var(--thistle)) 1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.header-logo-img {
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    line-height: 1.1;
    text-align: center;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-medium-dark);
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 1rem;
}

/* Image Float Styles */
.float-left {
    float: left;
    margin: 0 20px 15px 0;
    max-width: 300px;
    height: auto;
    border-radius: 1px;
}

.float-right {
    float: right;
    margin: 0 0 15px 20px;
    max-width: 300px;
    height: auto;
    border-radius: 1px;
}

/* Main Content Layout - 25% / 75% */
.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 3%;
    position: relative;
    z-index: 10;
}

.content-layout {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Left Sidebar - 25% */
.sidebar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: fit-content;
}

.sidebar h3 {
    font-size: 2rem !important;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--accent-lavender);
}

.sidebar ul {
    list-style: none;
    margin-bottom: 0.8rem;
}

.sidebar li {
    margin-bottom: 0.2rem;
    font-size: 14px !important;
}

.sidebar a {
    color: #5A9BD4;
    text-decoration: none;
    font-size: 14px !important;
    transition: color 0.3s ease;
}

.sidebar a:hover {
    color: var(--accent-rosey);
    text-decoration: underline;
}

.sidebar p {
    font-size: 14px !important;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.sidebar div {
    margin-bottom: 0.3rem;
}

.page-footer-info {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--white-85);
    font-size: 12px !important;
}

/* Right Content Area - 75% */
.main-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2rem 2rem 1rem 2rem;   /* was just 2rem  */
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-content h2 {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.main-content h3 {
    font-size: 2rem !important;
    margin: 1rem 0 1rem 0;   /* was 2rem 0 1rem 0; */
    color: var(--text-medium-dark);
}

.main-content p {
    font-size: 16px !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.main-content p.footnote { font-size; smaller; text-align; right; }

.main-content a {
    color: #5A9BD4;
    text-decoration: none;
}

.main-content a:hover {
    color: var(--accent-rosey);
    text-decoration: underline;
}

.main-content ul {
    margin: 0.5rem 0;
}

.main-content li {
    margin-bottom: 0.2rem;
}

.main-content div {
    margin-bottom: 0.5rem;
}

/* Update Block - Float Right */
.update-block {
    background: linear-gradient(135deg, var(--lavender-blush), var(--alice-blue));
    border-left: 4px solid var(--accent-lavender);
    padding: 1.5rem;
    margin: 0 0 2rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-light);
    float: right;
    width: 45%;
    clear: right;
}

.update-block h4 {
    font-size: 1.6rem !important;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.update-block p, .update-block li {
    font-size: 15px !important;
}

.update-block ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.update-block li {
    margin-bottom: 0.2rem;
}

.update-block div {
    margin-bottom: 0.3rem;
}

/* Ensure main content text flows around the floated update block */
.main-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Content Sections within main-content - REMOVE GAPS */
.content-section {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(155, 127, 216, 0.2);
}

.content-section:last-child {
    border-bottom: none;
}

.content-section:first-child {
    margin-top: 0;
    padding-top: 0;
}

/* 25% Left / 75% Right Section */
.section-25-75 {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 2rem;
    align-items: flex-start;
}

.section-left h4 {
    font-size: 1.6rem !important;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-right p, .section-right li {
    font-size: 15px !important;
    line-height: 1.6;
}

.section-right ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.section-right li {
    margin-bottom: 0.2rem;
}

.section-right div {
    margin-bottom: 0.3rem;
}

/* 3 Equal Columns Section */
.section-thirds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.section-third h4 {
    font-size: 1.4rem !important;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--accent-lavender);
    padding-bottom: 0.5rem;
}

.section-third p, .section-third li {
    font-size: 14px !important;
    line-height: 1.5;
}

.section-third ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.section-third li {
    margin-bottom: 0.2rem;
}

.section-third div {
    margin-bottom: 0.3rem;
}

/* Full Width Section */
.section-full {
    width: 100%;
}

.section-full h3 {
    font-size: 2rem !important;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Data Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 14px !important;
}

.data-table th,
.data-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--white-85);
    font-size: 13px !important;
}

.data-table th {
    background: var(--primary-lavender);
    font-weight: 600;
    color: var(--text-dark);
}

.data-table tr:hover {
    background: var(--alice-blue);
}

/* Address Blocks */
.address-block {
    background: var(--alice-blue);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    border-left: 3px solid var(--accent-lavender);
}

.address-block p {
    font-size: 14px !important;
    margin-bottom: 0.3rem;
}

.address-block div {
    margin-bottom: 0.2rem;
}

/* Footer - ELIMINATE GAP */
footer {
    background: var(--header-gradient);
    backdrop-filter: blur(20px);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--powder-blue), var(--accent-lavender), var(--thistle)) 1;
    margin-top: 4rem;
    position: relative;
    z-index: 100;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3%;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.75rem !important;  /* was 1.4rem */
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--accent-lavender);
    padding-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.2rem;
    font-size: 14px !important;
}

.footer-column a {
    color: #5A9BD4;
    text-decoration: none;
    font-size: 14px !important;
}

.footer-column a:hover {
    color: var(--accent-rosey);
    text-decoration: underline;
}

.footer-column p {
    font-size: 14px !important;
    line-height: 1.5;
}

.footer-column div {
    margin-bottom: 0.3rem;
}

.usgenweb-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.usgenweb-logo {
    flex-shrink: 0;
    max-width: 80px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
    font-size: 14px !important;
    line-height: 1.6;
}

.footer-bottom .small {
    font-size: 12px !important;
    opacity: 0.8;
}

.footer-bottom a {
    color: #5A9BD4;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-rosey);
    text-decoration: underline;
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

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

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

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .header-logo-img {
        width: 120px;
        height: auto;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .sidebar {
        padding: 1rem;
    }
    
    .update-block {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }
    
    .section-25-75 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-thirds {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-section {
        margin: 0.5rem 0;
        padding: 0.3rem 0;
    }
    
    .float-left, .float-right {
        float: none;
        display: block;
        margin: 1rem auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 1.5rem 3%;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .header-logo-img {
        width: 100px;
        height: auto;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .sidebar {
        padding: 1rem;
    }
    
    .update-block {
        float: none;
        width: 100%;
        margin: 2rem 0;
        padding: 1rem;
    }
    
    .section-25-75 {
        gap: 0.5rem;
    }
    
    .section-thirds {
        gap: 1rem;
    }
    
    .content-section {
        margin: 0.3rem 0;
        padding: 0.2rem 0;
    }
    
    .data-table {
        font-size: 12px !important;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.5rem;
        font-size: 11px !important;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.8rem; }
    h4 { font-size: 1.4rem; }
}

/* Print Styles */
@media print {
    .particles,
    .sidebar,
    footer {
        display: none;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    body {
        background: white;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}
