/* About Page Styles */
.about-page {
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 0 5rem;
    margin-top: 10rem;
}

.about-content,
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #333;
}

.about-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Accordion Styles */
.accordion {
    width: 100%;
    border-top: 1px solid #e0e0e0;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    transition: color 0.3s ease;
}

.accordion-button:hover {
    color: #0056b3;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-button[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-button[aria-expanded="true"] + .accordion-content {
    max-height: 1000px; /* Adjust based on content */
    padding-bottom: 1.5rem;
}

.accordion-content p {
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    color: #555;
}

/* Image Styles */
.about-featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .about-page{width: 100vw;}
    .about-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 3rem;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-content,
    .about-image {
        width: 100%;
    }

    .about-video{height: 25vh !important;}

    .header-container{
        margin: 0 !important;
        padding: 0 40px !important;
        max-width: 100vw !important;
    }

    .primary-menu.active{
        width: 100vw;
    }

    .values-grid-section{margin: 5rem 2rem !important;}
}
