* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif, serif !important;
    color: #FF69B4;
}

.courses-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    color: #DB7093;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    border: 1px solid #FFB6C1;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.3);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.3);
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.course-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.course-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price {
    background-color: #FFF0F5;
    padding: 5px 10px;
    border-radius: 5px;
}

.price span {
    text-decoration: line-through;
    margin-right: 5px;
    color: #FFB6C1;
    font-size: 14px;
}

.register-btn {
    background-color: #FFB6C1;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: #DB7093;
    box-shadow: 0 4px 8px rgba(219, 112, 147, 0.3);
}