/* style/about.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #1A1A1A;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #121212;
    --bg-light: #f8f9fa;
    --card-bg-dark: rgba(255, 255, 255, 0.08);
    --card-bg-light: #ffffff;
    --border-color-dark: rgba(255, 255, 255, 0.15);
    --border-color-light: #e0e0e0;
}

.page-about {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Body background is dark, so text is light */
    line-height: 1.6;
    background-color: var(--bg-dark); /* Ensure consistency with body background */
}

.page-about__hero-section {
    position: relative;
    width: 100%;
    padding: 100px 20px 60px; /* Adjusted padding-top for fixed header on desktop */
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a0a 100%);
    color: var(--text-light);
    overflow: hidden;
}

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

.page-about__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.page-about__cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-about__cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button--inline {
    margin-top: 30px;
}

/* Brand Section */
.page-about__brand-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.page-about__brand-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-about__brand-title {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__brand-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-about__brand-item {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
    background: var(--card-bg-dark);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color-dark);
}

.page-about__brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about__brand-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-about__brand-item h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__brand-item p {
    font-size: 1em;
    color: #e0e0e0;
    line-height: 1.7;
}

.page-about__brand-section-detail {
    margin-bottom: 60px;
    text-align: left;
    padding: 0 20px;
}

.page-about__section-subtitle {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__brand-section-detail p {
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-about__values-list li {
    background: var(--card-bg-dark);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--border-color-dark);
    transition: background-color 0.3s ease;
}

.page-about__values-list li:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.page-about__value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: brightness(1.2); /* Allowed for stylistic enhancement, not color change */
}

.page-about__values-list h4 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-about__values-list p {
    font-size: 0.95em;
    color: #c0c0c0;
    line-height: 1.6;
    text-align: center;
}

.page-about__brand-history-image,
.page-about__brand-team-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.page-about__commitment-list li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1.05em;
    color: #e0e0e0;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-about__commitment-list li strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-about__faq-section {
    padding: 80px 20px;
    background-color: #0a0a0a;
    color: var(--text-light);
    text-align: center;
}

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

.page-about__faq-main-title {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__faq-list {
    margin-top: 30px;
}

.page-about__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.page-about__faq-question:hover {
    background: #2a2a2a;
    color: #fff;
}

.page-about__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-about__faq-item.active .page-about__faq-question h3 {
    color: #ffffff;
}

.page-about__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.page-about__faq-item.active .page-about__faq-toggle {
    color: #ffffff;
    transform: rotate(45deg); /* Plus to X for active */
}

.page-about__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background: var(--card-bg-dark);
    color: #c0c0c0;
    text-align: left;
}

.page-about__faq-item.active .page-about__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain any content */
    padding: 20px 25px !important;
    opacity: 1;
    border-radius: 0 0 8px 8px;
}

.page-about__faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.7;
    color: #c0c0c0;
}

/* Blog Section */
.page-about__blog-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid var(--border-color-dark);
}

.page-about__blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-about__blog-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__blog-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-about__blog-item {
    background: var(--card-bg-dark);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color-dark);
}

.page-about__blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about__blog-link {
    text-decoration: none;
    display: block;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-about__blog-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color-dark);
}

.page-about__blog-item-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 20px 20px 10px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.page-about__blog-item-excerpt {
    font-size: 0.95em;
    color: #c0c0c0;
    margin: 0 20px 15px;
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
}

.page-about__blog-item-date {
    font-size: 0.85em;
    color: #888;
    margin: 0 20px 20px;
    text-align: right;
    display: block;
}

.page-about__blog-cta {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__main-title {
        font-size: 2.8em;
    }
    .page-about__brand-title, .page-about__faq-main-title, .page-about__blog-title {
        font-size: 2.5em;
    }
    .page-about__section-subtitle {
        font-size: 2em;
    }
    .page-about__brand-item {
        flex: 1 1 calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
    .page-about__values-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 80px 15px 40px; /* Adjusted padding-top for fixed header on mobile */
    }
    .page-about__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-about__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-about__brand-section, .page-about__faq-section, .page-about__blog-section {
        padding: 60px 15px;
    }
    .page-about__brand-title, .page-about__faq-main-title, .page-about__blog-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .page-about__section-subtitle {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 25px;
    }
    .page-about__brand-item {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 25px;
    }
    .page-about__brand-item h3 {
        font-size: 1.5em;
    }
    .page-about__brand-item p {
        font-size: 0.95em;
    }
    .page-about__values-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-about__values-list li {
        padding: 20px;
    }
    .page-about__value-icon {
        width: 60px;
        height: 60px;
    }
    .page-about__values-list h4 {
        font-size: 1.2em;
    }
    .page-about__brand-history-image, .page-about__brand-team-image, .page-about__blog-item-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }
    .page-about__blog-list {
        grid-template-columns: 1fr;
    }
    .page-about__blog-item-title {
        font-size: 1.2em;
    }
    .page-about__blog-item-excerpt {
        font-size: 0.9em;
    }
    .page-about__faq-question {
        padding: 15px 20px;
    }
    .page-about__faq-question h3 {
        font-size: 1.1em;
    }
    .page-about__faq-toggle {
        font-size: 24px;
        width: 25px;
        height: 25px;
        margin-left: 15px;
    }
    .page-about__faq-item.active .page-about__faq-answer {
        padding: 15px 20px !important;
    }

    /* Ensure all image and video containers are responsive */
    .page-about img,
    .page-about video {
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-about__hero-section,
    .page-about__brand-section,
    .page-about__faq-section,
    .page-about__blog-section,
    .page-about__hero-container,
    .page-about__brand-container,
    .page-about__faq-container,
    .page-about__blog-container,
    .page-about__brand-item,
    .page-about__blog-item,
    .page-about__faq-item {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    .page-about__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-about__brand-section-detail,
    .page-about__values-list,
    .page-about__commitment-list,
    .page-about__blog-list {
        padding-left: 0;
        padding-right: 0;
    }
    .page-about__blog-item-title, .page-about__blog-item-excerpt, .page-about__blog-item-date {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-about__main-title {
        font-size: 1.8em;
    }
    .page-about__brand-title, .page-about__faq-main-title, .page-about__blog-title {
        font-size: 1.8em;
    }
    .page-about__section-subtitle {
        font-size: 1.6em;
    }
    .page-about__faq-question h3 {
        font-size: 1em;
    }
    .page-about__faq-toggle {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    .page-about__brand-item h3 {
        font-size: 1.3em;
    }
}