:root {
    --primary-red: #e33226;
    --primary-blue: #1c529b;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: var(--bg-light);
    width: 100%;
    position: relative; 
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 90px;
    max-width: 1600px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.logo-img {
    display: block;
    max-height: 60px; /* Adjust height to fit the header nicely */
    width: auto;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color var(--transition-speed);
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0px;
}

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

.nav-links a.active {
    color: var(--primary-red);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
}

.dropdown a i {
    margin-left: 5px;
    font-size: 0.7rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    border-radius: 2px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #c4271e;
}

.btn-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    width: fit-content;
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 90px);
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Approximation of the gradient in the screenshot */
    background: linear-gradient(90deg, rgba(28,82,155,0.8) 0%, rgba(180,60,60,0.6) 50%, rgba(200,80,60,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.mute-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color var(--transition-speed);
    font-size: 1.2rem;
}

.mute-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1300px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1100px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .main-nav.mobile-active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }

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

@media (max-width: 768px) {
    .header-right {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-icon {
        padding: 0.8rem 1.5rem;
    }
    
    .mute-btn {
        bottom: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
