.about-page {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

.center-separator {
    margin-left: auto;
    margin-right: auto;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.about-content-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.rounded-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: scale(1.02);
}

.mission-statement {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Founder Section Styles */
.founder-section {
    margin: 80px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-details h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-style: italic;
}

/* Timeline Styles */
.timeline-section {
    margin: 80px 0;
    position: relative;
}

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

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--black);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--black);
    top: 30px;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--black);
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--black);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-title {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 15px;
}

/* Testimonials Styles */
.testimonials-section {
    margin: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.quote-icon {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 10px;
    display: block;
}

.testimonial-author {
    padding-top: 20px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--dark-gray);
    font-style: italic;
}

/* Call to Action Styles */
.about-cta {
    background: var(--light-gray);
    padding: 60px;
    text-align: center;
    border-radius: 10px;
    margin-top: 80px;
}

.about-cta h2 {
    margin-bottom: 20px;
}

.about-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content-grid,
    .about-content-grid.reverse,
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
    }
}

@media (max-width: 768px) {
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.btn-primary{
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-secondary{
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn::after {
    background: var(--black);
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    transform-origin: top center;
    transform: scale3d(1, 0, 1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}