:root {
    --primary-color: #0b2545;
    --secondary-color: #13345e;
    --accent-color: #c9a24b;
    --accent-color-light: #e6c877;
    --text-dark: #1c1c1c;
    --text-light: #5a5f66;
    --bg-light: #f7f5f0;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(11,37,69,0.1);
    --max-width: 1200px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    z-index: 2000;
    text-decoration: none;
}

.skip-link:focus {
    left: 20px;
}

/* Header & Navigation */
header {
    background: var(--primary-color);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo-text .accent {
    color: var(--accent-color);
}

.logo a {
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 76px;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 6rem 0;
    text-align: center;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0b2545 0%, #13345e 55%, #0b2545 100%);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201,162,75,0.18), transparent 55%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--accent-color-light);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.6rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    background: var(--accent-color-light);
}

.cta-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Section headings shared */
section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid var(--accent-color);
    text-align: left;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Business Opportunities Section */
.opportunities {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.opportunity-card {
    background: white;
    padding: 2.2rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.opportunity-card:hover {
    transform: translateY(-5px);
}

.opportunity-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.opportunity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 480px;
    width: 100%;
    border-top: 3px solid var(--accent-color);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.contact-role {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* Legal Notice / Privacy Pages */
.legal-section,
.privacy-section {
    padding: 6rem 0 4rem;
    background: var(--bg-light);
    min-height: calc(100vh - 160px);
}

.legal-section h1,
.privacy-section h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.legal-content,
.privacy-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2,
.privacy-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-content h2:first-child,
.privacy-content h2:first-child {
    margin-top: 0;
}

.legal-content h3,
.privacy-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.legal-content p,
.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content ul,
.privacy-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content a,
.privacy-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover,
.privacy-content a:hover {
    text-decoration: underline;
}

.placeholder-note {
    display: inline-block;
    background: #fdf3d8;
    border: 1px solid var(--accent-color);
    color: #6b5416;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-style: italic;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 68px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 68px);
        background: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    section {
        padding: 3rem 0;
    }
}
