:root {
    --primary-color: #004AAD; /* Professional Blue */
    --secondary-color: #3AA655; /* Accent Green/Trust */
    --text-color: #333;
    --light-bg: #f7f7f7;
    --max-width: 1100px;
    --padding: 20px;
}

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

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: white;
}

/* Typography and Headings */
h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 0.5em;
    font-weight: 700;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; border-bottom: 2px solid var(--light-bg); padding-bottom: 10px; }
h3 { font-size: 1.5em; }

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding);
}

header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 1.8em;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
}

.logo span {
    color: var(--secondary-color);
    font-weight: 300;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    padding: 5px 10px;
    display: block;
    font-weight: 600;
}

/* Sections */
section {
    padding: 60px 0;
}

.hero {
    background-color: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    color: #555;
}

/* Buttons and CTA */
.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #2a8740;
}

/* Service Highlights */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.service-item {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

/* Forms */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

form textarea {
    resize: vertical;
}

.consent-checkbox {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.consent-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

/* Footer & Compliance */
footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    font-size: 0.9em;
}

footer a {
    color: #b3d1ff;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 8px;
}

.social-links a {
    font-size: 1.5em;
    margin-right: 10px;
}

.compliance-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    nav ul {
        margin-top: 10px;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }
}

/* Cookie Banner Styling (must be present on all pages) */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none; /* Controlled by JS */
}

#cookie-banner p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

#cookie-banner a {
    color: var(--secondary-color);
    text-decoration: underline;
}

#cookie-accept {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 10px;
}

#cookie-accept:hover {
    background: #2a8740;
}