:root {
    --color-navy: #0a192f;
    --color-royal-blue: #4169e1;
    --color-royal-blue-hover: #3154b3;
    --color-white: #e6f1ff;
    --color-slate: #8892b0;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

body {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    padding: 2rem 0;
}

.logo {
    height: 60px;
    /* SVG might need slightly different sizing */
    width: auto;
    display: block;
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.hero h1 {
    font-size: clamp(32px, 8vw, 80px);
    /* Slightly smaller min size */
    font-weight: 700;
    color: white;
    /* Brighter than off-white */
    margin-bottom: 20px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
        align-items: flex-start;
    }

    .container {
        padding: 0 1.5rem;
    }
}

.hero .subtitle {
    font-size: clamp(16px, 4vw, 24px);
    color: var(--color-royal-blue);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--color-royal-blue);
    color: var(--color-royal-blue);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: rgba(65, 105, 225, 0.1);
}

/* Content Pages (Privacy Policy, etc.) */
.content-page {
    padding: 60px 0;
    max-width: 720px;
    /* More readable line length */
    margin: 0 auto;
}

.content-page h1 {
    margin-bottom: 3rem;
    color: white
}

.content-page section {
    margin-bottom: 3.5rem;
    /* Space between sections */
}

.content-page h2 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.content-page p {
    margin-bottom: 1.5rem;
    color: var(--color-slate);
    line-height: 1.8;
    /* More breathing room */
}

.content-page ul {
    margin-bottom: 1.5rem;
    color: var(--color-slate);
    padding-left: 1.5rem;
}

.content-page li {
    margin-bottom: 1rem;
    /* Space between list items */
    line-height: 1.7;
}

/* Contact */
.contact-section {
    padding: 100px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.contact-section p {
    color: var(--color-slate);
    margin-bottom: 30px;
}

.contact-link {
    font-size: 20px;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.contact-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-royal-blue);
    transition: width .3s;
}

.contact-link:hover::after {
    width: 100%;
}

/* Footer */
.site-footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--color-slate);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.address-line {
    margin-top: 0.5rem;
    font-size: 13px;
    opacity: 0.7;
}

.footer-nav {
    margin-top: 1rem;
}

.footer-nav a {
    color: var(--color-royal-blue);
    text-decoration: none;
    margin-left: 15px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s forwards 0.3s;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s forwards 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}