/* Add this to your CSS/stylesInsurance.css file */

/* Basic styling for the main content area */
.contenedor__principal {
    padding: 2rem 0; /* Add some padding above and below the main content */
    /* Ensure this aligns with padding in other similar containers */
}

.pagina-seguros {
    background-color: #fff; /* White background for the content box */
    padding: 2.5rem; /* Slightly more padding for content */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08); /* Slightly more pronounced shadow */
    line-height: 1.7; /* Improved readability for paragraphs */
    color: #444; /* Darker text color for content */
}

.pagina-seguros h2 {
    text-align: center; /* Center the main title */
    margin-bottom: 2.5rem; /* More space below the main title */
    color: #1a1a1a; /* Very dark color for main heading */
    font-size: 2rem; /* Larger font size for the main heading */
}

.pagina-seguros section {
    margin-bottom: 2.5rem; /* Space between sections */
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee; /* Separator line between sections */
}

.pagina-seguros section:last-child {
    border-bottom: none; /* No border after the last section */
    padding-bottom: 0;
    margin-bottom: 0; /* Remove margin below the last section */
}

.pagina-seguros h3 {
    margin-top: 0; /* Remove top margin if it's the first element in a section */
    margin-bottom: 1.2rem; /* Space below sub-headings */
    color: #333; /* Darker color for sub-headings */
    font-size: 1.5rem; /* Font size for sub-headings */
}

.pagina-seguros p {
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Styling for the Key Coverages list */
.pagina-seguros ul {
    list-style: disc; /* Use standard bullet points */
    margin: 1.5rem 0; /* Space above and below the list */
    padding-left: 20px; /* Indent the list */
}

.pagina-seguros ul li {
    margin-bottom: 0.8rem; /* Space between list items */
}

.pagina-seguros ul li strong {
    color: #333; /* Make the bolded coverage names stand out */
}

/* Styling for contact links */
.pagina-seguros a {
    color: #007bff; /* Standard link color */
    text-decoration: none; /* Remove underline by default */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.pagina-seguros a:hover {
    color: #0056b3; /* Darker color on hover */
    text-decoration: underline; /* Add underline on hover */
}

/* Styling for the quote form placeholder */
.pagina-seguros .quote-form-placeholder {
    border: 1px dashed #ccc;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    background-color: #f8f8f8; /* Light grey background */
    border-radius: 4px;
    font-style: italic;
    color: #777;
}

/* You can add more specific styles for form elements if you implement the quote form */
/* For example:
.pagina-seguros form .input-box { ... }
.pagina-seguros form input[type="text"] { ... }
*/