/* About Page Specific Styles */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 30px;
}

.about-image {
    flex: 0 0 300px;
    text-align: center;
}

.about-image img {
    width: 280px;
    height: 280px;
    border-radius: 10px;
    border: 4px solid var(--main-color);
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-text p strong {
    color: var(--main-color);
    font-weight: 600;
}

.about-text ul {
    list-style-position: inside;
    margin-bottom: 25px;
    color: var(--text-color);
}

.about-text ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    position: relative;
    padding-left: 20px;
}

.about-text ul li::before {
    content: "•";
    color: var(--main-color);
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.about-text ul li strong {
    color: var(--main-color);
    font-weight: 600;
}

/* Read More/Less Button Styling */
.expanded-content {
    display: none;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 20px;
    margin-top: 10px;
    background-color: transparent;
    color: #00abf0;
    border: 2px solid #00abf0;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.read-more-btn:hover {
    background-color: #00abf0;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 171, 240, 0.5);
}

.expanded .expanded-content {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .about-image {
        margin-bottom: 20px;
    }
    
    .about-image img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .about-image img {
        width: 180px;
        height: 180px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-text ul li {
        font-size: 0.95rem;
    }
}