.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50; /* Elegant dark blue */
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: #7f8c8d; /* Subtle grey */
    line-height: 1.6;
}

.btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: #fff;
}

.btn-outline-secondary {
    color: #7f8c8d;
    border: 2px solid #7f8c8d;
}

.btn-outline-secondary:hover {
    background-color: #7f8c8d;
    color: #fff;
}

.btn-success {
    background-color: #27ae60;
    color: white;
}

.btn-success:hover {
    background-color: #1e8449;
    color: white;
}

.btn-outline-primary {
    border-color: #3498db;
    color: #3498db;
}

.btn-outline-primary:hover {
    background-color: #3498db;
    color: white;
}

.explore-section img {
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.explore-section img:hover {
    transform: scale(1.05);
}

.about-section {
    background-color: #f9f9f9; /* Soft background color */
    border-radius: 10px;
    padding: 40px;
}

.about-section .about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.about-section .about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-section .about-list i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #3498db;
}

.contact-section {
    background-color: #ecf0f1; /* Light grey tint */
    border-radius: 10px;
    padding: 40px;
}

.contact-section .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    margin: 10px;
}
