:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A1A1A; /* Dark Black */
    --accent-color: #CC0000; /* Red for accents */
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
    --bg-light: #F8F8F8;
    --bg-dark: #2C2C2C;
}

.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.page-about section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-about section:nth-of-type(even) {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-about section:nth-of-type(even) h1, .page-about section:nth-of-type(even) h2, .page-about section:nth-of-type(even) h3 {
    color: var(--primary-color);
}

.page-about h1 {
    font-size: 3.2em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about h2 {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-about section:nth-of-type(even) h2::after {
    background-color: var(--primary-color);
}

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

.page-about section:nth-of-type(even) h3 {
    color: var(--primary-color);
}

.page-about p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-about ul {
    list-style: none;
    padding-left: 0;
}

.page-about ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-about ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2em;
    top: 0;
}

.page-about .cta-button, .page-about .cta-button-small {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    border: 2px solid transparent;
}

.page-about .cta-button:hover, .page-about .cta-button-small:hover {
    background-color: #FFC107; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.page-about .cta-button-small {
    padding: 10px 25px;
    font-size: 1em;
    margin-top: 15px;
}

/* Hero Section Specific Styles */
.page-about .hero-section {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-about .hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-about .hero-content {
    flex: 1;
    min-width: 300px;
}

.page-about .hero-content h1 {
    color: var(--primary-color);
    text-align: left;
    font-size: 3.5em;
    margin-bottom: 25px;
}

.page-about .hero-content p {
    font-size: 1.2em;
    line-height: 1.9;
    margin-bottom: 20px;
}

.page-about .hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-about .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Content Grid */
.page-about .content-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.page-about .grid-item {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.page-about .grid-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about .reverse-order .grid-item:first-child {
    order: 2;
}

.page-about .reverse-order .grid-item:last-child {
    order: 1;
}

/* Customer Experience Cards */
.page-about .experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about .card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
}

.page-about .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-about .card img {
    max-width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-about .card h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-about .card p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-about .faq-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-about .faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--bg-light);
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--secondary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #fcfcfc;
    color: var(--text-dark);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .page-about .hero-content h1 {
        text-align: center;
        font-size: 3em;
    }

    .page-about .hero-image {
        margin-top: 30px;
    }

    .page-about .content-grid {
        flex-direction: column;
    }

    .page-about .reverse-order .grid-item:first-child {
        order: initial;
    }

    .page-about .reverse-order .grid-item:last-child {
        order: initial;
    }

    .page-about h1 {
        font-size: 2.8em;
    }

    .page-about h2 {
        font-size: 2em;
    }

    .page-about h3 {
        font-size: 1.5em;
    }

    .page-about .cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
    }

    .page-about .card img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-about section {
        padding: 40px 0;
    }

    .page-about .container {
        padding: 0 15px;
    }

    .page-about .hero-content h1 {
        font-size: 2.5em;
    }

    .page-about h2 {
        font-size: 1.8em;
    }

    .page-about h3 {
        font-size: 1.3em;
    }

    .page-about p, .page-about ul li {
        font-size: 1em;
    }

    .page-about .card {
        padding: 20px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1.1em;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-about .hero-content h1 {
        font-size: 2em;
    }

    .page-about h2 {
        font-size: 1.6em;
    }

    .page-about h3 {
        font-size: 1.2em;
    }

    .page-about .cta-button {
        font-size: 1em;
        padding: 10px 25px;
    }

    .page-about .card img {
        height: 180px;
    }
}