/* style/about.css */\n\n/* Base styles for the About Us page */\n.page-about {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    color: #f0f0f0; /* Assuming --dark-bg from shared.css is dark, use light text */\n    background-color: transparent; /* Inherit from body, which gets --dark-bg */\n}\n\n.page-about__container {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 20px;\n    box-sizing: border-box;\n}\n\n.page-about__section-title {\n    font-size: 2.5em;\n    color: #26A9E0; /* Brand color for titles */\n    text-align: center;\n    margin-bottom: 40px;\n    padding-top: 40px;\n    font-weight: bold;\n}\n\n.page-about__section-description {\n    font-size: 1.1em;\n    text-align: center;\n    max-width: 800px;\n    margin: 0 auto 60px;\n    color: #ffffff; /* Light text for descriptions on dark sections */\n}\n\n/* Hero Section */\n.page-about__hero-section {\n    position: relative;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    justify-content: center;\n    text-align: center;\n    padding: 60px 20px;\n    min-height: 500px; /* Ensure sufficient height */\n    overflow: hidden;\n    color: #ffffff;\n    padding-top: var(--header-offset, 120px); /* Apply header offset here */\n}\n\n.page-about__hero-image-wrapper {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    z-index: -1;\n    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)); /* Dark overlay */\n}\n\n.page-about__hero-image-wrapper img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    filter: brightness(0.6); /* Darken image slightly for text contrast */\n    /* Ensure no filter changing colors */\n}\n\n.page-about__hero-content {\n    position: relative;\n    z-index: 1;\n    max-width: 900px;\n}\n\n.page-about__hero-title {\n    font-size: 3.5em;\n    margin-bottom: 20px;\n    font-weight: bold;\n    color: #FFFFFF;\n}\n\n.page-about__hero-description {\n    font-size: 1.3em;\n    margin-bottom: 40px;\n    color: #f0f0f0;\n}\n\n.page-about__hero-buttons {\n    display: flex;\n    gap: 20px;\n    justify-content: center;\n    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */\n}\n\n/* Buttons */\n.page-about__btn-primary,\n.page-about__btn-secondary {\n    display: inline-block;\n    padding: 15px 30px;\n    border-radius: 8px;\n    text-decoration: none;\n    font-weight: bold;\n    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;\n    cursor: pointer;\n    text-align: center;\n    box-sizing: border-box;\n    max-width: 100%; /* Ensure responsive behavior */\n    white-space: normal; /* Allow text to wrap */\n    word-wrap: break-word; /* Allow long words to break */\n}\n\n.page-about__btn-primary {\n    background-color: #26A9E0; /* Brand primary color */\n    color: #FFFFFF;\n    border: 2px solid #26A9E0;\n}\n\n.page-about__btn-primary:hover {\n    background-color: #1a7eb3;\n    border-color: #1a7eb3;\n}\n\n.page-about__btn-secondary {\n    background-color: transparent;\n    color: #FFFFFF;\n    border: 2px solid #FFFFFF;\n}\n\n.page-about__btn-secondary:hover {\n    background-color: #FFFFFF;\n    color: #26A9E0;\n}\n\n/* Dark Section Styling */\n.page-about__dark-section {\n    background-color: #1a1a1a; /* Darker background for contrast */\n    color: #ffffff;\n    padding: 60px 0;\n}\n\n.page-about__dark-section .page-about__section-title {\n    color: #26A9E0; /* Brand color on dark background */\n}\n\n/* Mission & Vision Section */\n.page-about__mission-vision-section .page-about__container {\n    padding-top: 60px;\n    padding-bottom: 60px;\n}\n\n.page-about__mission-vision-grid {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 40px;\n    text-align: left;\n}\n\n.page-about__grid-item {\n    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards on dark bg */\n    padding: 30px;\n    border-radius: 10px;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n    color: #ffffff;\n}\n\n.page-about__item-title {\n    font-size: 1.8em;\n    color: #26A9E0;\n    margin-bottom: 15px;\n    font-weight: bold;\n}\n\n.page-about__item-text {\n    font-size: 1.1em;\n    line-height: 1.7;\n}\n\n/* History Section */\n.page-about__history-section {\n    background-color: #ffffff;\n    color: #333333;\n    padding: 60px 0;\n}\n\n.page-about__history-section .page-about__section-title {\n    color: #000000;\n}\n\n.page-about__history-content {\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    gap: 30px;\n    text-align: center;\n}\n\n.page-about__text-block {\n    font-size: 1.1em;\n    line-height: 1.7;\n    max-width: 800px;\n    margin: 0 auto;\n    color: #333333;\n}\n\n.page-about__history-image {\n    max-width: 100%;\n    height: auto;\n    border-radius: 10px;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);\n    display: block; /* Ensure it behaves as a block element */\n}\n\n/* Values Section */\n.page-about__values-section {\n    padding: 60px 0;\n}\n\n.page-about__values-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n    gap: 30px;\n    margin-top: 40px;\n}\n\n.page-about__value-card {\n    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */\n    padding: 30px;\n    border-radius: 10px;\n    text-align: center;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n    color: #ffffff;\n    transition: transform 0.3s ease;\n}\n\n.page-about__value-card:hover {\n    transform: translateY(-5px);\n}\n\n.page-about__card-title {\n    font-size: 1.6em;\n    color: #26A9E0;\n    margin-bottom: 15px;\n    font-weight: bold;\n}\n\n.page-about__card-text {\n    font-size: 1em;\n    line-height: 1.6;\n}\n\n/* Commitment Section */\n.page-about__commitment-section {\n    background-color: #ffffff;\n    color: #333333;\n    padding: 60px 0;\n}\n\n.page-about__commitment-section .page-about__section-title {\n    color: #000000;\n}\n\n.page-about__commitment-content {\n    display: flex;\n    align-items: center;\n    gap: 40px;\n    margin-top: 40px;\n    flex-wrap: wrap; /* Allow content to wrap */\n}\n\n.page-about__commitment-image {\n    flex: 1;\n    min-width: 300px;\n    max-width: 50%;\n    height: auto;\n    border-radius: 10px;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);\n    display: block; /* Ensure it behaves as a block element */\n}\n\n.page-about__commitment-text-block {\n    flex: 1;\n    min-width: 300px;\n    font-size: 1.1em;\n    line-height: 1.7;\n    color: #333333;\n}\n\n.page-about__commitment-text-block p {\n    margin-bottom: 20px;\n}\n\n/* Team Section */\n.page-about__team-section {\n    padding: 60px 0;\n}\n\n.page-about__team-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n    gap: 30px;\n    margin-top: 40px;\n}\n\n.page-about__team-member {\n    background-color: rgba(255, 255, 255, 0.08);\n    padding: 30px;\n    border-radius: 10px;\n    text-align: center;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n    color: #ffffff;\n}\n\n.page-about__team-member img {\n    width: 200px; /* Specific width for display */\n    height: 200px; /* Specific height for display */\n    border-radius: 50%;\n    object-fit: cover;\n    margin-bottom: 20px;\n    border: 3px solid #26A9E0;\n    display: block; /* Ensure it behaves as a block element */\n    margin-left: auto;\n    margin-right: auto;\n}\n\n.page-about__member-name {\n    font-size: 1.5em;\n    color: #26A9E0;\n    margin-bottom: 5px;\n    font-weight: bold;\n}\n\n.page-about__member-role {\n    font-size: 1.1em;\n    color: #f0f0f0;\n    margin-bottom: 15px;\n}\n\n.page-about__member-bio {\n    font-size: 0.95em;\n    line-height: 1.6;\n    color: #cccccc;\n}\n\n/* CSR Section */\n.page-about__csr-section {\n    background-color: #ffffff;\n    color: #333333;\n    padding: 60px 0;\n}\n\n.page-about__csr-section .page-about__section-title {\n    color: #000000;\n}\n\n.page-about__csr-list {\n    list-style: none;\n    padding: 0;\n    margin-top: 40px;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n}