/* style/about-us.css */

/* General page styles */
.page-about-us {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #FFFFFF); /* Assuming light background from shared */
}

.page-about-us__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.page-about-us__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-about-us__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-about-us__hero-section {
    padding-top: 10px; /* Small top padding, assuming body has padding-top from shared */
    padding-bottom: 60px;
    background-color: #26A9E0; /* Brand primary color */
    color: #FFFFFF; /* White text for contrast */
}

.page-about-us__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 15px;
    gap: 40px;
}

.page-about-us__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
}

.page-about-us__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-about-us__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #FFFFFF;
}

.page-about-us__hero-image {
    flex: 1 1 40%;
    min-width: 280px;
    text-align: center;
}

.page-about-us__hero-side-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-about-us__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-about-us__btn-primary,
.page-about-us__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-about-us__btn-primary {
    background-color: #EA7C07; /* Login color */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

.page-about-us__btn-primary:hover {
    background-color: #D36A00;
    border-color: #D36A00;
}

.page-about-us__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-about-us__btn-secondary:hover {
    background-color: #F0F8FF;
    border-color: #1e87c0;
}

/* Intro Section */
.page-about-us__intro-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Light background */
    color: #333333;
}

.page-about-us__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.page-about-us__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-about-us__icon-box-media {
    width: 200px; /* Fixed width for square */
    height: 200px; /* Fixed height for square */
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E0F2F7; /* Light background for icons */
}

.page-about-us__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.page-about-us__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about-us__feature-description {
    font-size: 1em;
    color: #555555;
}

/* Why Choose Us Section */
.page-about-us__why-choose-us {
    padding: 60px 0;
    background-color: #26A9E0; /* Brand primary color */
    color: #FFFFFF; /* White text for contrast */
}

.page-about-us__why-choose-us .page-about-us__section-title {
    color: #FFFFFF; /* White title for dark background */
}

.page-about-us__content-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-about-us__content-text {
    flex: 1 1 55%;
    min-width: 300px;
}

.page-about-us__content-text .page-about-us__text-block {
    color: #FFFFFF;
}

.page-about-us__content-image {
    flex: 1 1 35%;
    min-width: 280px;
    text-align: center;
}