.about-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header .subtitle {
    color: #f7a442;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.about-header .highlighted {
    color: #f7a442;
}

.about-content {
    padding-left: 30px;
}

.about-content .subtitle {
    color: #f7a442;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-content .highlighted {
    color: #f7a442;
}

.about-text {
    color: #666;
    line-height: 1.8;
}

.about-text .lead {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.experience-badge {
    font-size: 1.2rem;
    font-weight: 500;
}

.experience-badge .text-primary {
    color: #f7a442 !important;
    font-weight: 700;
}

.about-section img {
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.02);
}

.btn-primary {
    background-color: #f7a442;
    border-color: #f7a442;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e5933a;
    border-color: #e5933a;
    transform: translateY(-2px);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 3px solid #f7a442;
    transition: all 0.3s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 100%; /* Add maximum height */
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Adjust image size for different screens */
@media (max-width: 768px) {
    .about-image {
        max-width: 100%;
        object-fit: cover; /* Ensure image covers the container */
    }
    
    .about-image img {
        max-height: 100%; /* Ensure image fits within container */
        object-fit: cover; /* Maintain aspect ratio */
    }
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(247, 164, 66, 0.2);
}

.about-image:hover img {
    transform: scale(1.05);
}

.vision-mission-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(247, 164, 66, 0.2);
}

.vision-mission-box h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-mission-box h3 i {
    color: #f7a442;
}

.vision-mission-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}