 /* CSS VARIABLES */
    :root {
        --primary: #0C223E;
        --accent: #0C223E;
        --text-dark: #333;
        --text-light: #666;
        --bg-light: #f4f7f6;
        --white: #ffffff;
        --transition: all 0.3s ease;
        }
/* RESET & BASE */
    * { margin: auto; padding: 0; box-sizing: border-box; }
        
    body { 
        position: relative; 
        font-family: 'Segoe UI', system-ui, sans-serif; 
        line-height: 1.6; 
        color: var(--text-dark); 
        background-color: var(--white); 
        }

/* BACKGROUND LAYER */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('acuity-bg.webp'); 
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        z-index: -1;
        }

/* HERO */
    .hero { padding: 80px 20px; text-align: center; background: rgba(244, 247, 246, 0.8); }
    .hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; color: var(--primary); }
    .hero p { font-size: 1.25rem; color: var(--text-light); max-width: 700px; margin: 0 auto 30px; }

/* SECTIONS */
    section { padding: 80px 0; }
    h2 { font-size: 2rem; margin-bottom: 40px; text-align: center; color: var(--primary); }
    
/* SERVICES GRID */
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .card { 
        display: block; 
        text-decoration: none; 
        color: inherit; 
        background: var(--white); 
        padding: 40px; 
        border-radius: 12px; 
        border: 1px solid #eee; 
        transition: var(--transition);
        text-align: center; 
        }
    .card:hover { 
        border-color: var(--accent); 
        box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
        transform: translateY(-5px); 
    }

/* TABLE */
    .table-wrapper { overflow-x: auto; margin-top: 30px; }
    table { width: 100%; border-collapse: collapse; min-width: 600px; }
    th, td { padding: 18px; text-align: left; border: 1px solid #333; vertical-align: top; }
    th { background-color: var(--primary); color: white; }
    tr:nth-child(odd) { background-color: #f9f9f9; }
    table ul { margin: 0; padding-left: 20px; }
    table li { margin-bottom: 5px; font-size: 0.95rem; }

/* NAV */
    .container { max-width: 1100px; margin: 0 auto; padding: 20px 0; }
    nav { background: var(--white); padding: 15px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
    nav .container { display: flex; justify-content: space-between; align-items: center; }
    .logo img { height: 70px; width: auto; display: block;}

/* BUTTONS */
    .btn { background: var(--accent); color: var(--white); padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: 600; transition: var(--transition); display: inline-block; }
    .btn:hover { background: var(--primary); transform: translateY(-2px); }
        
/* FOOTER CTA */
    .cta-section { text-align: center; background: var(--primary); color: var(--white); }
    .cta-section h2 { color: var(--white); }   
    footer { padding: 40px 0; text-align: center; font-size: 0.9rem; color: var(--text-light); background: var(--white); border-top: 1px solid #eee; }
    @media (max-width: 768px) {
    .hero { padding: 60px 20px; }}

/*Content Pages*/
    body { font-family: 'Segoe UI', system-ui, sans-serif; line-height: 1.6; color: var(--text-dark); background-color: var(--white); }
    .content-section { background: var(--white); padding: 40px; border-radius: 12px; border: 1px solid #eee; }
    h1 { color: var(--primary); margin-bottom: 20px; }
    h2 { color: var(--primary); margin: 30px 0 15px 0; }
    p { margin-bottom: 20px; }
    ul { margin-bottom: 20px; padding-left: 20px; }
    li { margin-bottom: 10px; }
    .back-link { display: inline-block; margin-bottom: 20px; color: var(--accent); text-decoration: none; font-weight: bold; }

/*Form Page*/
    .form-container { max-width: 900px; margin: 0 auto; padding: 20px; }
    .form-group { margin-bottom: 1.5rem; }
    label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--primary); }
    input[type="text"], input[type="email"], textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-family: inherit;}
    textarea { height: 150px; resize: vertical; }

/*Security Policy Page*/
        h1 { color: var(--primary); margin-bottom: 40px; text-align: center; }
        h2 { color: var(--primary); margin-top: 30px; margin-bottom: 20px; }
        p { margin-bottom: 20px; }
        ul { margin-bottom: 20px; padding-left: 20px; }
        li { margin-bottom: 10px; }
    /* Contact Box Style */
        .contact-box { background: var(--bg-light); padding: 20px; border-left: 5px solid var(--accent); margin: 20px 0; }