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

:root {
    --navy: #0d1321;
    --navy-mid: #151c2c;
    --navy-light: #1e2738;
    --gold: #c9a227;
    --gold-hover: #e0b93a;
    --gold-muted: #a68620;
    --cream: #f7f5f0;
    --cream-dark: #ebe7df;
    --text: #2a2a2a;
    --text-muted: #5c5c5c;
    --white: #ffffff;
}

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

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

/* Header */
header {
    background: var(--navy);
    color: var(--white);
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: Georgia, 'Times New Roman', serif;
}

.logo h1 a {
    color: var(--gold) !important;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(13, 19, 33, 0.92), rgba(21, 28, 44, 0.88)),
        linear-gradient(160deg, #1a2336 0%, #0d1321 55%, #1c1830 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--gold-muted);
}

.hero h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lead {
    font-size: 1.15rem;
    opacity: 0.9;
    font-style: italic;
    color: #e8e4d9;
    max-width: 640px;
    margin: 0 auto;
}

.lead::after {
    content: '';
    display: block;
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto 0;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--cream);
}

.services h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--navy);
    font-family: Georgia, 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 2px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 18px rgba(13, 19, 33, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 19, 33, 0.12);
}

.service-card h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-family: Georgia, 'Times New Roman', serif;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--navy-mid);
    color: #e8e4d9;
}

.about h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-family: Georgia, 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #d8d3c8;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--cream-dark);
    text-align: center;
}

.contact h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-family: Georgia, 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info p {
    font-size: 1rem;
    margin: 0;
    color: var(--text);
}

/* Footer */
footer {
    background: var(--navy);
    color: #c8c4ba;
    padding: 2.25rem 0;
    text-align: center;
    border-top: 2px solid var(--gold);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e8e4d9;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Content Pages */
.content-page {
    padding: 4rem 0;
    min-height: 60vh;
    background: var(--cream);
}

.content-page h2 {
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 2rem;
    text-align: left;
    font-family: Georgia, 'Times New Roman', serif;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.75rem;
}

.content-page h3 {
    color: var(--navy);
    margin: 2rem 0 1rem 0;
    font-size: 1.35rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.content-page h4 {
    color: var(--navy-light);
}

.content-page li {
    margin-left: 2rem;
    margin-bottom: 0.5rem;
}

.content-page ul {
    margin: 1rem 0 1rem 2rem;
}

.content-page a {
    color: var(--gold-muted);
}

.content-page a:hover {
    color: var(--gold);
}

/* Forms */
.opt-out-form,
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 2px;
    margin: 2rem 0;
    max-width: 600px;
    border: 1px solid var(--cream-dark);
    border-top: 3px solid var(--gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d4d0c8;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 2rem;
    border: 1px solid var(--gold);
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Contact page layout */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info-section {
    background-color: var(--navy);
    color: #e8e4d9;
    padding: 2rem;
    border-radius: 2px;
    border-top: 3px solid var(--gold);
}

.contact-info-section h3 {
    color: var(--gold);
}

.contact-details .contact-item {
    margin-bottom: 2rem;
}

.contact-details .contact-item:last-child {
    margin-bottom: 0;
}

.contact-details h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.contact-details p {
    margin: 0;
    line-height: 1.6;
    color: #d8d3c8;
}

.contact-details a {
    color: var(--gold);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
    color: var(--gold-hover);
}

/* Alternative contact section */
.contact-alternative {
    background: var(--white);
    padding: 2rem;
    border-radius: 2px;
    margin-top: 2rem;
    border: 1px solid var(--cream-dark);
    border-left: 3px solid var(--gold);
}

.contact-alternative h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Learn More section */
.learn-more {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd6c8;
}

.learn-more h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.learn-more .contact-info p {
    margin-bottom: 0.5rem;
}

.learn-more .contact-info a {
    color: var(--gold-muted);
    text-decoration: none;
}

.learn-more .contact-info a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Success message */
.success-message {
    background-color: #f3f0e6;
    border: 1px solid var(--gold);
    color: var(--navy);
    padding: 2rem;
    border-radius: 2px;
    margin: 2rem 0;
    text-align: center;
}

.success-message h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.success-message p {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 1.9rem;
    }

    .logo h1 {
        font-size: 1.1rem;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .content-page h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
