:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1E90FF; /* Dodger Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark-1: #0d0d0d; /* From shared.css, implies dark background for body */
    --card-bg-dark: rgba(255, 255, 255, 0.1);
    --card-bg-light: #ffffff;
    --border-color: #e0e0e0;
}

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

/* Ensure content is not hidden by fixed header */
.page-about__title-section {
    padding-top: 120px; /* Desktop: Adjust for fixed header */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--bg-dark-1), rgba(30, 144, 255, 0.2));
    color: var(--text-light);
    text-align: center;
}

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

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

.page-about__title-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.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(--text-dark);
    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;
    white-space: normal;
    word-wrap: break-word;
}

.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--secondary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.page-about__cta-button--secondary:hover {
    background: #1a7ae6;
}

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

.page-about__dark-section {
    background-color: var(--bg-dark-1);
    color: var(--text-light);
}

.page-about__brand-title {
    font-size: 2.8em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

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

.page-about__brand-item {
    background: var(--card-bg-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-about__brand-image {
    width: 100%;
    max-width: 400px; /* Recommended size for content images */
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    aspect-ratio: 4/3; /* Maintain aspect ratio */
}

.page-about__brand-item-heading {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__brand-item p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.page-about__faq-title {
    font-size: 2.8em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

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

.page-about__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--card-bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-about__faq-question:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

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

.page-about__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    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: var(--primary-color);
}

.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: #fefefe;
    color: var(--text-dark);
}

.page-about__faq-item.active .page-about__faq-answer {
    max-height: 2000px !important;
    padding: 25px !important;
    opacity: 1;
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
}

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

/* Blog Section */
.page-about__blog-section {
    padding: 80px 0;
    background-color: var(--bg-dark-1);
    color: var(--text-light);
}

.page-about__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-about__blog-title {
    font-size: 2.8em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

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

.page-about__blog-item {
    background: var(--card-bg-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.page-about__blog-image {
    width: 100%;
    height: 200px; /* Fixed height for blog images */
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__blog-item-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 20px 20px 10px;
    font-weight: bold;
    flex-grow: 1;
}

.page-about__blog-item-excerpt {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 20px 15px;
    line-height: 1.6;
}

.page-about__blog-item-date {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 20px 20px;
    display: block;
}

.page-about__view-all-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* General image responsiveness */
.page-about img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__main-title {
        font-size: 2.8em;
    }
    .page-about__brand-title, .page-about__faq-title, .page-about__blog-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-about__title-section {
        padding-top: 100px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
    }
    .page-about__container {
        padding: 0 15px;
    }
    .page-about__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-about__title-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-about__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 25px;
        font-size: 1em;
        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: 50px 0;
    }
    .page-about__brand-title, .page-about__faq-title, .page-about__blog-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .page-about__brand-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-about__brand-item {
        padding: 25px;
    }
    .page-about__brand-item-heading {
        font-size: 1.5em;
    }
    .page-about__faq-question {
        padding: 15px 20px;
    }
    .page-about__faq-question h3 {
        font-size: 1em;
    }
    .page-about__faq-toggle {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
    .page-about__faq-answer {
        padding: 0 20px;
    }
    .page-about__faq-item.active .page-about__faq-answer {
        padding: 20px !important;
    }
    .page-about__blog-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-about__blog-item-title {
        font-size: 1.2em;
        margin: 15px 15px 8px;
    }
    .page-about__blog-item-excerpt, .page-about__blog-item-date {
        margin-left: 15px;
        margin-right: 15px;
    }

    /* General image responsiveness for mobile */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-about__brand-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: auto !important;
    }
    .page-about__blog-image {
        height: 180px !important;
    }

    /* Ensure all containers containing images or buttons are responsive */
    .page-about__section, .page-about__card, .page-about__container,
    .page-about__brand-item, .page-about__blog-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__brand-section .page-about__container,
    .page-about__faq-section .page-about__container,
    .page-about__blog-section .page-about__container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .page-about__main-title {
        font-size: 1.8em;
    }
    .page-about__brand-title, .page-about__faq-title, .page-about__blog-title {
        font-size: 1.8em;
    }
    .page-about__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-about__brand-item-heading {
        font-size: 1.3em;
    }
    .page-about__faq-question h3 {
        font-size: 0.95em;
    }
    .page-about__blog-item-title {
        font-size: 1.1em;
    }
}