/* HERO */
.course-hero {
    padding: 120px 20px 80px 20px;
    text-align: center;
}

.course-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.gold-line {
    width: 80px;
    height: 2px;
    background: #d4af37;
    margin: 20px auto;
}

/* SECTION */
.course-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.course-image img {
    width: 100%;
    border-radius: 12px;
}

.course-content h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.course-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* SKILLS */
.skills {
    margin-top: 30px;
}

.skills ul {
    list-style: none;
    padding: 0;
}

.skills li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.skills li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* PRICE BOX */
.price-box {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    text-align: center;
}

.price-box h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
}

.course-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
}
.contact-box {
    margin-top: 60px;
    padding: 40px;
    border: 1px solid #d4af37;
    border-radius: 12px;
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.teacher-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.teacher-location {
    font-size: 18px;
    margin-bottom: 10px;
    color: #555;
}

.teacher-phone {
    font-size: 18px;
    margin-bottom: 25px;
}

.teacher-phone a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.teacher-phone a:hover {
    color: #d4af37;
}