.page-header {
    padding: 60px 5% 30px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 211, 182, 0.1), transparent);
    border-bottom: 1px solid rgba(94, 55, 25, 0.1);
    margin-bottom: 40px;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: #FF806A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.page-subtitle {
    font-size: clamp(1rem, 2.3vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--dark-brown);
    opacity: 0.85;
    line-height: 1.6;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 50px;
    display: block !important;
    width: 100%;
}

.about-section {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    margin-bottom: 30px;
    color: var(--dark-brown);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(94, 55, 25, 0.1);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--dark-brown);
    opacity: 0.9;
}

.about-content h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--dark-brown);
    opacity: 0.9;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0 35px;
}

.about-content ul li {
    position: relative;
    margin-bottom: 25px;
    border-left: 3px solid rgba(255, 159, 104, 0.2);
    padding-left: 20px;
    transition: var(--transition);
}

.about-content ul li:hover {
    border-left-color: var(--primary-color);
}

.about-content ul li::before {
    position: absolute;
    left: -12px;
    top: 5px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.about-content ul li h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
}

.about-content ul li p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-brown);
    opacity: 0.9;
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.team-member {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(94, 55, 25, 0.1);
    transition: box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    box-shadow: 0 10px 25px rgba(94, 55, 25, 0.2);
}

/*.member-avatar {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));*/
/*    margin: 0 auto 20px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: white;*/
/*    font-size: 2rem;*/
/*    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);*/
/*}*/

.team-member .member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
    position: relative;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
}

.team-member .member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.team-member:hover .member-avatar img {
    transform: scale(1.1);
}

.member-avatar .default-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .team-member .member-avatar {
        width: 100px;
        height: 100px;
    }
}

.member-name {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.member-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.member-bio {
    color: var(--dark-brown);
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.95rem;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(94, 55, 25, 0.1);
    transition: box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 25px rgba(94, 55, 25, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 159, 104, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.value-title {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.value-description {
    color: var(--dark-brown);
    opacity: 0.85;
    line-height: 1.6;
}

.timeline-container {
    width: 100%;
    margin: 40px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-date {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 159, 104, 0.3);
}

.timeline-content {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    width: calc(50% - 40px);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: 0 10px 25px rgba(94, 55, 25, 0.2);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--card-bg);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.timeline-content p {
    color: var(--dark-brown);
    opacity: 0.9;
    line-height: 1.6;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 60px;
    }

    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-content::before {
        left: -10px !important;
        right: auto !important;
    }

    .timeline-item::after {
        left: 30px;
    }
}

@media (max-width: 768px) {

    .about-content {
        padding: 20px;
    }

    .page-header {
        padding: 40px 5% 20px;
    }
}

@media (max-width: 576px) {

    .team-member,
    .value-card {
        padding: 20px 15px;
    }
}
