.page-about {
    color: #333333; /* Dark text for default (white) body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about__hero-section {
    position: relative;
    background: linear-gradient(135deg, #FFD700, #1E90FF);
    color: #ffffff;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    min-height: 500px; /* Minimum height for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Slightly transparent to let gradient show */
}

.page-about__hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
}

.page-about__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-about__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold main color */
    color: #1E90FF; /* Deep blue text for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-about__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-about__section-title {
    font-size: 2.5em;
    color: #1E90FF; /* Deep blue for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-about__mission-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-about__mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-about__mission-text {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.8;
    color: #555555;
    min-width: 300px;
}

.page-about__mission-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px; /* Enforce minimum image size */
}

.page-about__values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-about__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-about__value-item {
    background-color: #f0f8ff; /* Light blue background */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-10px);
}

.page-about__value-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for value titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__value-description {
    color: #666666;
    font-size: 0.95em;
}

.page-about__why-choose-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-about__why-choose-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-about__why-choose-item:hover {
    transform: translateY(-10px);
}

.page-about__why-choose-icon {
    width: 250px; /* Minimum 200px, 250px for visual appeal */
    height: 200px; /* Adjusted height to maintain minimum size */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px; /* Enforce minimum image size */
}

.page-about__why-choose-heading {
    font-size: 1.4em;
    color: #1E90FF; /* Deep blue for headings */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-about__why-choose-description {
    color: #666666;
    font-size: 0.95em;
}

.page-about__cta-section {
    background: linear-gradient(45deg, #1E90FF, #FFD700);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.page-about__cta-container {
    max-width: 800px;
}

.page-about__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold main color */
    color: #1E90FF; /* Deep blue text for contrast */
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-about__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__mission-content {
        flex-direction: column;
    }
    .page-about__mission-image {
        max-width: 100%;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 200px); /* Mobile header offset */
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
        padding-top: 40px;
    }
    .page-about__mission-section, .page-about__values-section, .page-about__why-choose-section, .page-about__cta-section {
        padding: 60px 0;
    }
    .page-about__values-grid, .page-about__why-choose-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-about__mission-text, .page-about__value-description, .page-about__why-choose-description {
        font-size: 0.9em;
    }
    .page-about__why-choose-icon {
        width: 100%; /* Ensure it takes full width on mobile */
        max-width: 300px; /* But not too big */
        height: auto;
        min-width: 200px; /* Enforce minimum image size */
        min-height: 200px; /* Enforce minimum image size */
    }
    .page-about__mission-image {
        min-width: 200px; /* Enforce minimum image size */
        min-height: 200px; /* Enforce minimum image size */
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__hero-description {
        font-size: 0.9em;
    }
    .page-about__section-title {
        font-size: 1.6em;
    }
    .page-about__cta-title {
        font-size: 1.6em;
    }
}