/* About Us Styles */
.about-us {
    width: 100%;
    background: white;
    padding: 60px 0;
    margin: 40px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #6A93B0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    background-color: #4A7A9A;
}

.social-icon:hover img {
    filter: brightness(1.3);
}

.about-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-title {
    font-family: 'Respondent', serif;
    font-size: 3.5rem;
    color: #6A93B0;
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.about-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.arrow-icon {
    width: auto;
    height: auto;
    max-width: 20px;
    max-height: 20px;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.about-description a {
    text-decoration: none;
    display: inline-block;
}

.about-description:hover a .arrow-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .about-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .about-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
        white-space: normal;
    }
    
    .about-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 30px 0;
        margin: 20px 0;
    }
    
    .about-container {
        padding: 0 25px;
        gap: 25px;
    }
    
    .about-content {
        gap: 15px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon img {
        width: 20px;
        height: 20px;
    }
}
