.page-about {
    color: #333333; /* Default text color for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-about__hero-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
    background-color: #000080; /* Auxiliary color for hero background */
    padding: 80px 0;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-about__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-about__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #000080; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-about__text-block {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 30px;
    color: #333333;
}

.page-about__story-grid,
.page-about__ph-market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-about__story-item,
.page-about__ph-market-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-about__story-image,
.page-about__ph-market-image,
.page-about__values-image,
.page-about__why-choose-image,
.page-about__security-image,
.page-about__cta-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
}

.page-about__story-heading,
.page-about__ph-market-heading {
    font-size: 1.8em;
    color: #000080;
    margin-bottom: 15px;
}

.page-about__story-text,
.page-about__ph-market-text {
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

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

.page-about__values-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__values-item {
    background-color: #ffffff;
    border-left: 5px solid #FFD700;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-about__values-heading {
    font-size: 1.6em;
    color: #000080;
    margin-bottom: 10px;
}

.page-about__values-text {
    font-size: 1em;
    color: #555555;
}

.page-about__values-text a {
    color: #000080;
    text-decoration: none;
    font-weight: bold;
}

.page-about__values-text a:hover {
    text-decoration: underline;
}

.page-about__why-choose-section {
    padding: 60px 0;
}

.page-about__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.page-about__feature-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-about__feature-text {
    font-size: 1em;
    color: #555555;
}

.page-about__feature-text a {
    color: #000080;
    text-decoration: none;
    font-weight: bold;
}

.page-about__feature-text a:hover {
    text-decoration: underline;
}

.page-about__ph-market-section {
    background-color: #f0f8ff; /* Light blue tint for local focus */
    padding: 60px 0;
}

.page-about__security-section {
    padding: 60px 0;
}

.page-about__security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__security-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.page-about__security-heading {
    font-size: 1.8em;
    color: #000080;
    margin-bottom: 15px;
}

.page-about__security-text {
    font-size: 1em;
    color: #555555;
}

.page-about__security-text a {
    color: #000080;
    text-decoration: none;
    font-weight: bold;
}

.page-about__security-text a:hover {
    text-decoration: underline;
}

.page-about__cta-section {
    background-color: #000080; /* Dark blue background */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-about__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-about__cta-container {
    position: relative;
    z-index: 1;
}

.page-about__cta-title {
    font-size: 3em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-about__contact-info {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.page-about__contact-links {
    margin-top: 30px;
}

.page-about__contact-button {
    display: inline-block;
    background-color: #000080;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.page-about__contact-button:hover {
    background-color: #000066;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .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__story-grid,
    .page-about__ph-market-grid {
        grid-template-columns: 1fr;
    }

    .page-about__values-list,
    .page-about__feature-grid,
    .page-about__security-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-about__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.2em;
    }

    .page-about__hero-description {
        font-size: 1em;
    }

    .page-about__section-title {
        font-size: 1.8em;
    }

    .page-about__hero-section {
        padding: 60px 0;
    }

    .page-about__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-about__story-item,
    .page-about__ph-market-item,
    .page-about__values-item,
    .page-about__feature-item,
    .page-about__security-item {
        padding: 20px;
    }

    .page-about__story-heading,
    .page-about__ph-market-heading,
    .page-about__values-heading,
    .page-about__feature-heading,
    .page-about__security-heading {
        font-size: 1.4em;
    }

    .page-about__cta-title {
        font-size: 2em;
    }

    .page-about__cta-description {
        font-size: 1em;
    }

    .page-about__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-about__contact-links {
        flex-direction: column;
    }

    .page-about__contact-button {
        margin-bottom: 15px;
        width: 80%;
        max-width: 250px;
    }

    /* Ensure content images are responsive and do not overflow */
    .page-about img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum display size */
        min-height: 200px; /* Enforce minimum display size */
    }

    .page-about__story-image,
    .page-about__ph-market-image,
    .page-about__values-image,
    .page-about__why-choose-image,
    .page-about__security-image,
    .page-about__cta-image {
        max-width: 100%;
        height: auto;
    }
}

@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.8em;
    }

    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}