:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg-color: #111111;
    --background-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-about {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Light text for dark background */
    background-color: var(--background-color);
    line-height: 1.6;
}

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

.page-about__section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-about__subsection-title {
    font-size: clamp(22px, 2.5vw, 32px);
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about p {
    margin-bottom: 15px;
    font-size: 16px;
}

.page-about img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
    background-color: var(--background-color);
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height to maintain aspect ratio for hero */
    overflow: hidden;
}

.page-about__hero-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

.page-about__hero-content {
    text-align: center;
    padding: 30px 20px;
    max-width: 900px;
    margin-top: -50px; /* Pull content slightly over the image for visual flow */
    position: relative;
    z-index: 1;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
}

.page-about__main-title {
    font-size: clamp(32px, 4vw, 56px);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-about__hero-description {
    font-size: 18px;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient);
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
    border: none;
    cursor: pointer;
}

.page-about__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
    filter: brightness(1.1);
}

/* Dark background sections for contrast */
.page-about__dark-bg {
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
    padding: 60px 0;
}

.page-about__dark-bg .page-about__section-title {
    color: var(--primary-color);
}

/* Values Section */
.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);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color);
}

.page-about__value-card .page-about__card-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-about__value-card p {
    font-size: 15px;
    color: var(--text-main-color);
}

/* Products Section */
.page-about__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__product-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-about__product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color);
}

.page-about__product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

.page-about__product-card .page-about__card-title {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 20px 20px 10px 20px;
    font-weight: 700;
}

.page-about__product-card p {
    font-size: 15px;
    color: var(--text-main-color);
    padding: 0 20px;
    flex-grow: 1;
}

.page-about__card-link {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #0A0A0A;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 12px 12px;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Push to bottom */
}

.page-about__card-link:hover {
    background-color: var(--secondary-color);
    filter: brightness(1.1);
}

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

.page-about__faq-section .page-about__section-title {
    color: var(--secondary-color);
}

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

.page-about__faq-item {
    background-color: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-about__faq-item[open] {
    background-color: #222222;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none; /* For details/summary default styling */
}

.page-about__faq-question::-webkit-details-marker {
    display: none;
}

.page-about__faq-toggle {
    font-size: 24px;
    line-height: 1;
    color: var(--secondary-color);
    margin-left: 15px;
}

.page-about__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 16px;
    color: var(--text-main-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-about__hero-content {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .page-about__container {
        padding: 30px 15px;
    }

    .page-about__hero-section {
        padding-bottom: 40px;
    }

    .page-about__hero-content {
        margin-top: -20px;
        padding: 20px;
    }

    .page-about__main-title {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 15px;
    }

    .page-about__hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-about__section-title {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 30px;
    }

    .page-about__subsection-title {
        font-size: clamp(20px, 4vw, 28px);
    }

    .page-about p,
    .page-about li {
        font-size: 15px;
    }

    /* Mobile image responsiveness */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 15px auto !important;
    }
    
    .page-about__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Card grid adjustments */
    .page-about__values-grid,
    .page-about__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-about__value-card,
    .page-about__product-card {
        padding: 20px;
    }

    .page-about__product-card img {
        
    }

    .page-about__product-card .page-about__card-title {
        font-size: 18px;
        margin: 15px 0 10px 0;
    }

    .page-about__card-link {
        padding: 10px 15px;
    }

    .page-about__faq-question {
        padding: 15px;
        font-size: 16px;
    }

    .page-about__faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 15px;
    }
}