/* Team Member Styles */
.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-title {
    color: #666;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card .card-body p {
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .team-member-image {
        width: 120px;
        height: 120px;
    }
}

/* Courses Section Styles */
.course-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 24px;
}

.course-details {
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.course-duration, .course-schedule {
    color: #666;
    font-size: 0.9em;
    margin: 5px 0;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.course-features li {
    padding: 8px 0;
    color: #4a4a4a;
    position: relative;
    padding-left: 25px;
}

.course-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.course-price {
    text-align: center;
    margin: 25px 0;
}

.price {
    font-size: 1.8em;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.price-note {
    color: #666;
    font-size: 0.9em;
    margin: 5px 0 15px;
}

@media (max-width: 768px) {
    .course-image {
        height: 160px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .price {
        font-size: 1.5em;
    }
}

/* Standardized Footer Styles */
.footer {
    padding: 40px 20px;
    background-color: #f8f9fa;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95em;
}

.footer-links a:hover {
    color: #000;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95em;
}

.social-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 20px;
}

.copyright {
    margin: 0;
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

.footer-address {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-links {
        gap: 20px;
        padding: 0 10px;
    }

    .social-links {
        gap: 15px;
        padding: 0 10px;
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        gap: 20px;
    }

    .footer-links {
        gap: 10px;
        flex-direction: column;
    }

    .social-links {
        gap: 10px;
        flex-direction: column;
    }

    .footer-links a,
    .social-link {
        width: 100%;
        justify-content: center;
    }
} 