/* About Page Specific Styles */

/* About Content */
.section {
    padding-left: 32px;
    padding-right: 32px;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.accomplishments-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.accomplishments-content p strong {
    color: #1a472a;
    font-size: 1.1rem;
}

/* Video Content Styles */
.video-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-item-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.video-item-container h3 {
    color: #1a472a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .about-content p,
    .accomplishments-content p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .video-wrapper {
        padding-bottom: 75%; /* Adjust aspect ratio for mobile */
    }
    
    .video-item-container {
        padding: 1rem;
    }
    
    .video-content {
        gap: 1.5rem;
    }
    
    /* Mobile layout for images and text */
    div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    div[style*="flex: 2"],
    div[style*="flex: 1"] {
        flex: 1 !important;
    }
    
    img[style*="width: 100%"] {
        margin-bottom: 1rem;
    }
}