:root {
    --primary-color: #006D77;
    --text-color: #1A1A1A;
    --bg-color: #F8F7F4;
    --teal: #006D77;
    --light-teal: #83C5BE;
    --mint-green: #98E2C6;
}



.hero-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1577896851231-70ef18881754') center/cover;
    color: white;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 14px;
}

.start-section {
    text-align: center;
    margin-bottom: 50px;
}

.start-tag {
    background-color: #E8F3F1;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.start-section h2 {
    font-size: 32px;
    color: var(--secondary-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.course-card {
    background-color: var(--card-background);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course-title {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.course-description {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 14px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 14px;
}

.features-list li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
}

.read-more-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #095a41;
}

.cta-section {
    text-align: center;
    margin: 50px 0;
}

.cta-section p {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #095a41;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .start-section h2 {
        font-size: 24px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
}