/* ==========================================================================
   5. TRAVEL INSURANCE PAGE
   ========================================================================== */

.insurance-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.insurance-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 850px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    /* This ensures it stays in 3 columns on desktop and 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
    margin-bottom: 100px;
}

.advantage-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    border-top: 4px solid var(--red);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: #222; /* Slight lift and color change on hover */
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 20px;
}

/* Partners Section */
.partners-section {
    text-align: center;
    background: #0a0a0a;
    padding: 60px 20px;
    border-radius: 12px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.partner-card {
    padding: 30px;
    background: var(--black);
    border: 1px solid #333;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--red);
}

.partner-card h3 {
    color: var(--red);
    margin-bottom: 15px;
}

.insurance-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    border: 1px dashed var(--gray);
    margin-bottom: 40px; /* Adjust this number (e.g., 50px or 60px) if you want even more space */
    font-size: 1.1rem;
}
.insurance-cta .phone-highlight {
    display: inline-block; /* Ensures the margin and padding apply correctly to the link */
}
.partner-badge {
    background: var(--red);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 15px;
}

.partner-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
}

.partner-features li {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 8px;
}

.partner-features i {
    color: var(--red);
    margin-right: 10px;
}