/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@700&display=swap');

/* --- CSS Variables (Theme Colors) --- */
:root {
    --primary-color: #DA291C; /* Dark Red from Logo */
    --secondary-color: #F8971D; /* Orange from Logo */
    --tertiary-color: #FBB03B; /* Yellow from Logo */
    --accent-color: #1A1A1A; /* Dark text/accents from Logo */
    
    --light-bg: #FFFFFF;
    --medium-light-bg: #F0F0F0;
    --dark-bg: #E0E0E0; /* For sections that need slight contrast */
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;

    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Roboto', sans-serif;
}

/* --- General & Reset Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* --- Header & Navigation --- */
.main-header {
    background: var(--light-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--dark-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo-img {
    height: 50px; /* Adjust as needed for your logo size */
    width: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav a {
    color: var(--accent-color);
    padding: 5px 10px;
    transition: color 0.3s ease;
    font-weight: 700;
}

.main-nav a:hover {
    color: var(--primary-color);
}


/* --- Hero Section --- */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    background-blend-mode: overlay; /* Blends the image with the background color */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-color-light); /* Light text on potentially darker image */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* --- Content Sections --- */
.content-section {
    padding: 4rem 0;
    background-color: var(--dark-bg); /* Slightly darker for contrast */
}

.content-section.bg-light {
    background-color: var(--light-bg);
}

/* --- Advantages Grid --- */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.advantage-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* --- Split Section --- */
.split-section {
    padding: 4rem 0;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.split-content h3 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.split-content p {
    text-align: left;
}

.split-content ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23DA291C" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
    padding-left: 30px;
    margin-bottom: 10px;

    /* MARK: added later */
    text-align: left;
}


/* --- Commitment Grid --- */
.commitment-grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr; */
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.commitment-item {
    width: 100%;
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 7px rgba(0,0,0,0.06);
}

.commitment-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* --- CTA Section --- */
.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-color-light);
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color); /* Hover to orange */
}

/* --- Footer --- */
.main-footer {
    background: var(--accent-color); /* Dark footer from logo */
    color: #bbb;
    text-align: center;
    padding: 1.5rem 0;
}

/* --- Responsive Design --- */
@media(max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-container {
        grid-template-columns: 1fr;
    }
    .commitment-grid{
        flex-direction: column;
    }
    .main-header .container {
        flex-direction: column;
    }

    .main-nav ul {
        margin-top: 1rem;
        padding: 0.5rem;
        background: var(--dark-bg);
        border-radius: 5px;
    }
}