:root {
    --primary-color: #0a192f; /* Deep Navy */
    --secondary-color: #c5a059; /* Gold/Bronze */
    --warning-bg: #f0f4f8;
    --warning-accent: #d9534f;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
}

ul {
    list-style-position: inside;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #152b4a;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.sub-logo {
    font-size: 0.8rem;
    color: #666;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav .btn {
    margin-left: 2rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Engagement Lists */
.engagement-list {
    margin-left: 20px; 
    margin-bottom: 20px;
}

.engagement-list li {
    margin-bottom: 0.5rem;
}

/* Warning Section */
.warning-section {
    background-color: var(--warning-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.warning-title {
    color: var(--warning-accent);
    text-align: left;
}

/* About */
.about-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.about-section .section-title {
    color: var(--white);
    text-align: left;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    display: inline-block;
}

/* Contact */
.contact-section {
    background-color: var(--light-bg);
    text-align: center;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-details {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p, .contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-cta {
    margin-top: 1rem;
}

.contact-cta .btn-primary {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.contact-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #050d1a;
    color: #888;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav a, .nav .btn {
        margin-left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
