body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.tab-container {
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #ddd;
    background-color: #2c3e50;
    border-radius: 8px 8px 0 0;
}

.tab-button {
    padding: 15px 30px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab-button.active {
    border-bottom: 2px solid #d4202d;
    color: #d4202d;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

.course-card {
    background-color: #fff3e0; /* Light peach background like in the image */
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    width: 300px;
    display: inline-block;
    vertical-align: top;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card-header .icon {
    font-size: 24px;
    margin-right: 10px;
    color: #ff6200;
}

.card-header h3 {
    font-size: 16px;
    color: #d4202d;
    margin: 0;
    font-weight: bold;
}

.card-header p {
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.badge {
    display: inline-block;
    background-color: #e0f7fa;
    color: #0288d1;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 15px;
}

.card-details p {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}

.card-details .icon {
    font-size: 16px;
    margin-right: 8px;
    color: #666;
}

.card-buttons {
    display: flex;
    justify-content: flex-start; /* Changed to align button to the left */
    margin-top: 20px;
}

.btn {
    text-decoration: none;
    padding: 10px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.apply-now {
    background-color: #d4202d;
    color: #fff;
}