/* About Section Styles */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.about-text {
    order: 1;
}

.about-image {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.about-image-inner {
    text-align: center;
}

.about-logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: all 0.3s ease;
}

.about-title {
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-title:not(:first-child) {
    margin-top: 50px;
}

.about-paragraph {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: 1;
        position: relative;
        top: 0;
        padding: 30px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-title:not(:first-child) {
        margin-top: 40px;
    }
    
    .about-paragraph {
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-image {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .about-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .about-title:not(:first-child) {
        margin-top: 30px;
    }
    
    .about-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: justify;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-image {
        padding: 20px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-paragraph {
        font-size: 0.9rem;
    }
}
