/* about.css */

/* About Us Intro */
.about-us-intro {
    background-color: #ffffff; /* White background for contrast */
    padding: 60px 0;
    text-align: center;
}

.about-us-intro h2 {
    font-family: 'Marcellus SC', serif;
    font-size: 2.5em;
    color: #004d99; /* Dark blue */
    margin-bottom: 25px;
}

.about-us-intro p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #333;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.about-us-intro p:last-child {
    margin-bottom: 0;
}

/* Our Values Section */
.our-values {
    background-color: #f0f8ff; /* Light blue background */
    padding: 60px 0;
    text-align: center;
}

.our-values h2 {
    font-family: 'Marcellus SC', serif;
    font-size: 2.5em;
    color: #004d99;
    margin-bottom: 40px;
}

.value-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 45%; /* Two cards per row on larger screens */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.6em;
    color: #28a745; /* Green */
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.why-choose-us h2 {
    font-family: 'Marcellus SC', serif;
    font-size: 2.5em;
    color: #004d99;
    margin-bottom: 40px;
}

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

.reason-item {
    background-color: #f8f8f8;
    border-left: 5px solid #0066cc; /* Blue border on the left */
    padding: 25px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
}

.reason-item:hover {
    background-color: #e6f2ff; /* Lighter blue on hover */
}

.reason-item p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.reason-item p strong {
    color: #003399; /* Darker blue for emphasis */
}

/* Services Overview - Original CSS for this section from the prompt */
/* This section is retained but its content moved to new sections for better organization */
.services-overview {
    background: #ccebff; /* Medium blue */
    padding: 10px 0;
    text-align: center;
    color: black;
    display: none; /* Hide this original section as content moved */
}

.services-overview .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 1px;
}

.services-overview .container h2 {
    font-family: Calibri, serif;
    font-size: 1.8em;
    color: red;
    font-weight: bold;
    font-style: normal;
    margin: 0;
}

.services-overview .container h3 {
    font-family: Calibri, serif;
    font-size: 1.4em;
    color: blue;
    font-weight: normal;
    font-style: normal;
    margin: 0;
}

.services-overview-content {
    flex: 1;
    min-width: 300px;
    text-align: center-left;
}
