:root {
    --primary-blue: #0D3B66;
    --light-gray: #F4F6F8;
    --accent-orange: #F95738;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: var(--white);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.cta-button {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 87, 56, 0.3);
}

.cta-button:hover {
    background: #e0472a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 87, 56, 0.4);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Value Props Section */
.value-props {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-blue);
}

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

.prop-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.prop-icon {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.prop-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Featured Deals Section */
.featured-deals {
    padding: 80px 0;
    background: white;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.deal-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.deal-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.deal-content {
    padding: 25px;
}

.deal-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.deal-content p {
    margin-bottom: 20px;
    color: #666;
}

.deal-button {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.deal-button:hover {
    background: #082a4a;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.about-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--medium-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

nav a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--primary-blue);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.final-cta .cta-button {
    background: var(--accent-orange);
    font-size: 20px;
    padding: 18px 35px;
}

/* Footer */
footer {
    background: #082a4a;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content, .about-content {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}
