:root {
    /* --- CSS Variables for Easy Tweaking --- */
    
    /* Colors */
    --primary-color: #2c3e50;    /* Dark Blue/Grey */
    --secondary-color: #34495e;  /* Slightly lighter */
    --accent-color: #0043d3;     /* Blue for highlights */
    --accent-color-highlight: #2966e9;    
    --success-color: #27ae60;    /* Green for Valid/Progress */
    --error-color: #c0392b;      /* Red for Errors */
    --gradient-stop-1: #000336;
    --gradient-stop-2: #1C1D4B;
    --bg-gradient: linear-gradient(135deg, var(--gradient-stop-1) 0%, var(--gradient-stop-2) 100%);         /* Page Background */
    --card-bg: rgba(255, 255, 255, 0.05);          /* Glass effect background */
    --card-border: rgba(255, 255, 255, 0.1);
    --text-color: #dddddd;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: #e0e0e0;

    /* Typography */
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-size-base: 16px;

    /* Spacing & Layout */
    --spacing-unit: 1rem;
    --input-height: 48px;
    --border-radius: 6px;
    --sidebar-width: 280px;

    --max-width: 1300px;
}

/* --- Reset & Base Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
        
#background-canvas{
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
}

body {
    /* Primary font stack */
    font-family: var(--font-main);
    /* Gradient using the requested brand colors */
    background: var(--bg-gradient);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* --- Layout Container --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 10;
    position: relative;
}

/* --- Header / Logo --- */
header {
    padding: 30px 0;
    background: rgba(0, 3, 54, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder {
    /* Dimensions for a wide, short logo */
    width: 200px;
    height: auto; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Navigation --- */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Main Content --- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 10; 
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    padding-bottom: 25px;
    background: -webkit-linear-gradient(#ffffff, #dcdcdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.subtext {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 40pt;
}

.hero-image-area img {
    max-height: 100%;
    max-width: 100%;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

.hero-image-area::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 0px;
    background: radial-gradient(circle, rgba(97, 124, 179, 0.3) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    border-bottom: none;
    border-radius: 50%;
}

.trusted-advisor-tick{
    margin-top: var(--spacing-unit);
    text-align: center;
}

.trusted-advisor-tick img{
    max-width: 300px;
}

.cta-sublink{
    text-align: center;
    margin-top: var(--spacing-unit);
}

.cta-sublink a{
    transition: all 180ms ease;
}

.cta-sublink a:hover,
.cta-sublink a:active{
    color: var(--accent-color-highlight);
}


/* --- Generic Section Styles --- */
.section {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content ul {
    list-style: none;
    margin-top: 20px;
}

.about-content li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-content li svg {
    width: 20px;
    min-width: 20px;
    color: var(--accent-color-highlight);
    margin-top: 4px;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.fee-section {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 12px;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.fee-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

.fee-price {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color-highlight);
    font-weight: bold;
    margin-top: 5px;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    color: var(--accent-color-highlight);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    max-height: 500px;
}

/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.button:hover {
    background-color: var(--accent-color-highlight);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.button-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
}

.button-outline:hover {
    background: var(--accent-color);
}

/* --- Footer --- */
footer {
    background-color: rgba(0, 3, 54, 0.5); 
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.copyright-area {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pdf-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.2s ease;
    text-align: left;
    cursor: pointer;
    width: fit-content;
}

.pdf-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

/* SVG Icon styling */
.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.disclosure-summary {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 20px;
    line-height: 1.5;
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .container:before,
    .container:after {
        display: none;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-text { margin: 0 auto; }
    
    .hero-label {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-area {
        width: 100%;
        height: 400px;
        margin-top: 20px;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none; /* Hide nav on mobile for simplicity in this version, would typically add hamburger */
    }
}