.insurance-container {
    /* max-width: 1200px;
    margin: 2rem auto; */
    padding: 1rem;
    background-color: #000;
    color: #fff;
}

.page-title {
    text-align: center;
    color: #FFD700;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.insurance-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: #1a1a1a;
    border: 1px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.2);
    background: #242424;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.category-title {
    font-size: 1.25rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-description {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.view-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: #FFD700;
    text-decoration: none;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-more:hover {
    background: #FFD700;
    color: #000;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: #1a1a1a;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.modal-content h2 {
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 2rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFD700;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #fff;
}

.insurance-types {
    columns: 2;
    gap: 2rem;
    margin-top: 1.5rem;
}

.insurance-type {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    background: #242424;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.insurance-type h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insurance-type ul {
    list-style: none;
    padding-left: 1rem;
}

.insurance-type li {
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
}

.insurance-type li::before {
    content: "•";
    color: #FFD700;
    position: absolute;
    left: -1rem;
}

@media (max-width: 768px) {
    .insurance-types {
        columns: 1;
    }
}
