/* Om oss Section */
.omoss-section {
    background-color: var(--bg-warm);
}

.omoss-section h2 {
    text-align: left;
    font-size: var(--font-size-h2);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.omoss-section .container,
.omoss-section .container > div,
.omoss-section p,
.omoss-section .container div,
.omoss-section .container *:not(h2):not(h3):not(button):not(.cta-button) {
    text-align: left;
    max-width: auto;
    margin: 0 auto;
    font-size: var(--font-size-body-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);  /* Normal weight - larger font size provides readability */
}

.omoss-section .cta-button {
    display: block;
    margin: var(--space-md) 0;
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: var(--text-white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    width: fit-content;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.omoss-section .cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Vision & Values Section */
.vision-values {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.vision, .values {
    width: 45%;
    background-color: var(--bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.vision h3, .values h3 {
    text-align: left;
    font-size: var(--font-size-h3);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.vision p, .values p,
.vision .expandable-content,
.values .expandable-content,
.vision .expandable-content *:not(h2):not(h3):not(h4):not(strong),
.values .expandable-content *:not(h2):not(h3):not(h4):not(strong) {
    text-align: left;
    font-size: var(--font-size-body-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);  /* Normal weight - larger font size provides readability */
}

/* Team Section */
.team-section {
    margin-top: 60px;
    text-align: center;
}

.team-section h2 {
    text-align: left; /* Left-aligning team section header */
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    width: 200px;
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
}

.team-member p {
    font-size: 1rem;
}

/* Smooth animation for expandable content */
.expandable-content {
    overflow: hidden;
    opacity: 1;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease-in-out;
}

/* Hide content with smooth animation */
.expandable-content.hidden-content {
    height: 0 !important;
    opacity: 0;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease-in-out;
}

/* Specific styling for the main extended content */
#extra-text {
    padding-top: 10px;
}

#extra-text.hidden-content {
    padding-top: 0;
}

/* Emphasize strong tags in values */
.values p strong {
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-values {
        flex-direction: column; /* Stack the vision and values sections */
        padding-right: 40px;
    }

    .vision, .values {
        width: 100%; /* Full width on mobile */
        margin-bottom: 20px;
    }

    .team-container {
        justify-content: center;
    }

    .team-member {
        width: 100%; /* Make team members full width on small screens */
        max-width: 300px;
    }

    .omoss-section h2 {
        font-size: 2rem;
    }

    .vision h3, .values h3 {
        font-size: 1.5rem;
    }
}

.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.toggle-header img {
    width: 20px;
    height: 20px;
}

/* Updated animation styles for vision and values sections */
.vision .expandable-content, .values .expandable-content {
    overflow: hidden;
    opacity: 1;
    margin-top: 10px;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}

.vision .expandable-content.hidden-content, .values .expandable-content.hidden-content {
    height: 0 !important;
    opacity: 0;
    margin-top: 0;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}
