body {
    background-color: #121212;
    color: #fff;
}
.navbar {
    background-color: #ff4081;
    padding: 15px;
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}
.navbar-nav .nav-link {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 15px;
}
.navbar-nav .nav-link:hover {
    color: #ffeb3b;
}
.btn-cta {
    background-color: #ffeb3b;
    color: #121212;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
}
.btn-cta:hover {
    background-color: #ffc107;
    color: #fff;
}
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
}
.hero p {
    font-size: 1.3rem;
    margin-top: 10px;
}
.hero .btn-cta {
    margin-top: 20px;
    background-color: #ffeb3b;
    color: #121212;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 10px;
}
.hero .btn-cta:hover {
    background-color: #ffc107;
    color: #fff;
}
.section {
    padding: 80px 20px;
}
.section h2 {
    color: #ff4081;
    margin-bottom: 30px;
    text-align: center;
}
.text-image-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.text-content {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}
.text-content p {
    font-size: 1.2rem;
}
.image-content {
    flex: 1;
    max-width: 50%;
    text-align: center;
}
.image-content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.accordion-button {
    background-color: #1a1a1a;
    color: white;
}
.accordion-button:not(.collapsed) {
    background-color: #ff4081;
    color: #fff;
}
.carousel-item img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.teacher-info {
    text-align: center;
    padding: 15px;
}
.testimonial-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.testimonial-card h4 {
    color: #ffeb3b;
    margin-top: 10px;
}
.pricing-table {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}
.pricing-table th, .pricing-table td {
    padding: 15px;
    border: 1px solid #ff4081;
    text-align: center;
}
.pricing-table th {
    background-color: #ff4081;
    color: #fff;
}
.contacts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.form-container {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    width: 48%;
}
.contacts-info {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    width: 48%;
    text-align: left;
}
.contacts-info p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.btn-submit {
    background-color: #ff4081;
    color: white;
    font-weight: bold;
}
.btn-submit:hover {
    background-color: #ff0066;
}
.footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
}
.footer span, .footer a {
    color: #ff4081;
    margin: 0 10px;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}