/* Additional styles for about page */

.about-card {
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.about-card img {
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.milestone {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.quote-section {
    background-color: var(--background-color-1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(107, 142, 35, 0.1), rgba(0, 0, 0, 0));
}

.blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-white);
    position: relative;
    padding: 0 60px;
}

.blockquote::before,
.blockquote::after {
    content: "";
    font-size: 80px;
    color: var(--color-primary);
    position: absolute;
    top: -20px;
    left: 0;
    opacity: 0.3;
}

.blockquote::after {
    content: "";
    left: auto;
    right: 0;
    top: auto;
    bottom: -60px;
}

.blockquote-author {
    font-size: 18px;
    color: var(--color-primary);
    text-align: right;
    margin-top: 20px;
    margin-right: 60px;
}

.mission-vision-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-vision-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.mission-vision-card p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--main-black-background);
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /*background-color: var(--color-primary-alta);*/
    background-color: rgba(154, 205, 50, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    color: var(--color-primary);
}

.contact-details {
    flex: 1;
}

.contact-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 5px;
}

.contact-info {
    font-size: 14px;
    color: var(--color-body);
}

.mb---20 {
    margin-bottom: -20px;
}
