:root {
    --primary-color: #C91F17; /* Main color */
    --secondary-color: #E53935; /* Auxiliary color */
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg-color: #D32F2F;
    --section-bg-color: #B71C1C;
    --text-main-color: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red-color: #7A0E0E;

    /* Default text for light background */
    --default-text-color-light: #333333;
    /* Default text for dark background */
    --default-text-color-dark: #ffffff;
}

.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main-color); /* All text in main content area uses Text Main color */
    background-color: var(--section-bg-color); /* Apply the specified background color for the page content area */
    overflow-x: hidden; /* Prevent horizontal scroll on body */
}

/* Base styles for sections and containers */
.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-about__section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--gold-color); /* Gold color for section titles */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__section-description {
    font-size: 18px;
    color: var(--text-main-color); /* Text Main color */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-about__sub-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    color: var(--gold-color); /* Gold color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

/* HERO Section */
.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--deep-red-color); /* Deep Red background for hero */
}

.page-about__hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-about__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-about__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--border-color); /* Border color */
    min-width: 200px;
    min-height: 200px;
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

.page-about__main-title {
    color: var(--gold-color); /* Gold color for main title */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-size: clamp(32px, 5vw, 56px); /* Using clamp for responsive H1 */
}

.page-about__hero-description {
    font-size: 18px;
    color: var(--text-main-color); /* Text Main color */
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.page-about__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 600px; /* Limit width of buttons container */
    margin: 0 auto;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__btn-primary {
    background: var(--button-gradient); /* Custom button gradient */
    color: var(--deep-red-color); /* Deep Red text for primary button */
    border: 2px solid var(--gold-color); /* Gold border */
}

.page-about__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__btn-secondary {
    background: var(--deep-red-color); /* Deep Red background */
    color: var(--gold-color); /* Gold text */
    border: 2px solid var(--gold-color); /* Gold border */
}

.page-about__btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-about__intro-section {
    background-color: var(--section-bg-color); /* Section background color */
    padding: 60px 0;
}

.page-about__grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__intro-content p {
    color: var(--text-main-color); /* Text Main color */
    margin-bottom: 15px;
}

.page-about__intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    min-width: 200px;
    min-height: 200px;
}

/* Values Section */
.page-about__values-section {
    background-color: var(--deep-red-color); /* Deep Red background */
    padding: 60px 0;
}

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

.page-about__value-card {
    background-color: var(--card-bg-color); /* Card BG color */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color); /* Border color */
}

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

.page-about__value-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-color); /* Gold color */
    margin-bottom: 15px;
}

.page-about__value-card p {
    color: var(--text-main-color); /* Text Main color */
    font-size: 16px;
}

/* Products Section */
.page-about__products-section {
    background-color: var(--section-bg-color); /* Section background color */
    padding: 60px 0;
}

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

.page-about__product-card {
    background-color: var(--card-bg-color); /* Card BG color */
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color); /* Border color */
}

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

.page-about__product-card img {
    width: 100%;
    height: 200px; /* Fixed height for product images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    min-width: 200px;
    min-height: 200px;
}

.page-about__product-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-color); /* Gold color */
    margin-bottom: 10px;
}

.page-about__product-card p {
    color: var(--text-main-color); /* Text Main color */
    font-size: 15px;
    margin-bottom: 20px;
}

.page-about__btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-gradient); /* Custom button gradient */
    color: var(--deep-red-color); /* Deep Red text */
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid var(--gold-color); /* Gold border */
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__btn-small:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Security Section */
.page-about__security-section {
    background-color: var(--deep-red-color); /* Deep Red background */
    padding: 60px 0;
}

.page-about__security-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    min-width: 200px;
    min-height: 200px;
}

.page-about__security-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about__security-list li {
    margin-bottom: 25px;
}

.page-about__security-list li:last-child {
    margin-bottom: 0;
}

.page-about__security-item-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-color); /* Gold color */
    margin-bottom: 10px;
}

.page-about__security-list p {
    color: var(--text-main-color); /* Text Main color */
    font-size: 16px;
}

/* Support Section */
.page-about__support-section {
    background-color: var(--section-bg-color); /* Section background color */
    padding: 60px 0;
}

.page-about__support-content p {
    color: var(--text-main-color);
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__contact-methods {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 600px;
    text-align: left;
}

.page-about__contact-methods li {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    color: var(--text-main-color);
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-about__contact-methods li strong {
    color: var(--gold-color);
}

/* Commitment Section */
.page-about__commitment-section {
    background-color: var(--deep-red-color); /* Deep Red background */
    padding: 60px 0;
}

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

.page-about__commitment-card {
    background-color: var(--card-bg-color); /* Card BG color */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
}

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

.page-about__commitment-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-color); /* Gold color */
    margin-bottom: 15px;
}

.page-about__commitment-card p {
    color: var(--text-main-color); /* Text Main color */
    font-size: 16px;
}

.page-about__commitment-image {
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}

.page-about__commitment-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    min-width: 200px;
    min-height: 200px;
}

/* FAQ Section */
.page-about__faq-section {
    background-color: var(--section-bg-color); /* Section background color */
    padding: 60px 0;
}

.page-about__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

details.page-about__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg-color); /* Card BG color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
details.page-about__faq-item summary.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}
details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
    display: none;
}
details.page-about__faq-item summary.page-about__faq-question:hover {
    background: var(--deep-red-color); /* Deep Red hover */
}
.page-about__faq-qtext {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color); /* Gold color */
}
.page-about__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold-color); /* Gold color */
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}
details.page-about__faq-item[open] summary.page-about__faq-question {
    background: var(--deep-red-color); /* Deep Red when open */
    border-bottom: 1px solid var(--border-color);
}
details.page-about__faq-item .page-about__faq-answer {
    padding: 0 25px 20px;
    background: var(--deep-red-color); /* Deep Red for answer background */
    border-radius: 0 0 10px 10px;
    color: var(--text-main-color); /* Text Main color */
    font-size: 15px;
}

/* CTA Section */
.page-about__cta-section {
    background-color: var(--deep-red-color); /* Deep Red background */
    padding: 60px 0;
    text-align: center;
}

.page-about__cta-section .page-about__section-title {
    color: var(--gold-color); /* Gold color */
}

.page-about__cta-section .page-about__section-description {
    color: var(--text-main-color); /* Text Main color */
    margin-bottom: 40px;
}

.page-about__cta-section .page-about__hero-cta-buttons {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__container {
        padding: 30px 15px;
    }
    .page-about__grid-two-columns {
        grid-template-columns: 1fr;
    }
    .page-about__intro-image,
    .page-about__security-image {
        order: -1; /* Image appears above content on smaller screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-about__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__main-title {
        font-size: clamp(28px, 8vw, 40px);
    }
    .page-about__hero-description {
        font-size: 16px;
    }
    .page-about__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-bottom: 15px; /* Add margin between stacked buttons */
    }
    .page-about__hero-cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 0; /* Remove gap when stacking */
    }
    .page-about__section-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    .page-about__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-about__sub-title {
        font-size: clamp(20px, 5vw, 28px);
    }
    .page-about__value-card,
    .page-about__product-card,
    .page-about__commitment-card {
        padding: 25px;
    }
    .page-about__value-title,
    .page-about__product-title,
    .page-about__security-item-title,
    .page-about__commitment-title {
        font-size: 20px;
    }
    .page-about__product-card img {
        
    }
    .page-about__btn-small {
        padding: 8px 15px;
        font-size: 13px;
    }
    details.page-about__faq-item summary.page-about__faq-question {
        padding: 15px 20px;
    }
    .page-about__faq-qtext {
        font-size: 16px;
    }
    .page-about__faq-toggle {
        font-size: 24px;
        width: 24px;
    }
    details.page-about__faq-item .page-about__faq-answer {
        padding: 0 20px 15px;
    }
    /* Image responsive overrides */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: unset !important; /* Override min-width for mobile */
        min-height: unset !important; /* Override min-height for mobile */
    }
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__hero-cta-buttons,
    .page-about__product-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}