:root {
    --primary-color: #42B979;
    --primary-color-dark: #379E66;
    --primary-color-light: #EEFBF5;
    --warning-color: #FFD25D;
    --warning-color-dark: #FEB65C;



    --secondary-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
}
.adjust-select select {
    border: 1px solid #77dd77;
}
#searchInput {
    border: 1px solid #77dd77;
}
body {
    font-family: Epilogue, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
}

.hero-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-right: 4px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    font-weight: 600;
}

.service-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.tutor-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.tutor-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.tutor-price {
    color: var(--secondary-color);
    font-weight: 700;
}

.about-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    font-size: 36px;
}

.course-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-card {
    background-color: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--primary-color);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-position {
    font-size: 14px;
    color: var(--primary-color)
}

.faq-item {
    margin-bottom: 16px;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    background-color: transparent;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.search-box {
    position: relative;
    margin-bottom: 30px;
}


.form-control,
.form-select {
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
}