/* About Section Styling */
.about-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('/img/logos/csgm_small.svg');
    background-size: 150%;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.11;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-title {
    color: #2B7401;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.about-btn {
    background-color: #2B7401;
    border-color: #2B7401;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: #1d5001;
    border-color: #1d5001;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(43, 116, 1, 0.3);
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
    .about-title {
        font-size: 2.25rem;
    }
    
    .about-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 992px) {
    .about-section {
        min-height: 450px;
        height: 70vh;
    }
    
    .about-section::before {
        width: 55%;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        min-height: 400px;
        height: 60vh;
    }
    
    .about-section::before {
        width: 65%;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .about-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        min-height: 350px;
        /* height: 50vh; */
        text-align: center;
    }
    
    .about-section::before {
        display: none;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
}