/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

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

/* Header and Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004a99; /* Xceed Blue */
    padding: 1rem 2rem;
    color: white;
}

.logo img {
    max-height: 40px; /* Controls the height of the logo */
    display: block;   /* Removes any extra space below the image */
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    background-color: #003366;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #004a99, #0066cc);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #ff9900; /* Safari Orange */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e68a00;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Feature Boxes for Homepage */
.coverage-summary {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    flex-basis: 30%;
}

.feature-box h3 {
    color: #004a99;
    margin-top: 0;
}

/* CTA Section */
.cta-section {
    background-color: #eef2f5;
    text-align: center;
    padding: 3rem 2rem;
}

.cta-buttons {
    margin-top: 1.5rem;
}

.cta-buttons .btn {
    margin: 0 10px;
}

/* Terms and Conditions Page */
.page-title {
    text-align: center;
    padding-bottom: 0;
}

.terms-content .terms-section {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.terms-section h3 {
    color: #004a99;
    border-bottom: 2px solid #eef2f5;
    padding-bottom: 0.5rem;
}

.terms-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Claim Process Page */
.claim-process .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    background-color: #004a99;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.step-content h3 {
    margin-top: 0;
    color: #004a99;
}

.contact-section {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #004a99;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .coverage-summary {
        flex-direction: column;
    }
}