/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Header */
.main-header {
    background-color: #006699;
    color: white;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 50px;
}

.search-bar input {
    padding: 5px;
    margin-right: 5px;
}

.search-bar button {
    padding: 5px;
    background-color: #ff9900;
    border: none;
    cursor: pointer;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.main-nav a {
    color: white;
    text-decoration: none;
}

/* Main Section Styles */
.main-section {
    padding: 20px;
    background-color: #f5f5f5;
    font-family: 'Arial', sans-serif; /* Feel free to choose your preferred font */
}

.main-banner {
    display: flex;
    justify-content: space-between;
    background-color: #4a4a8c; /* Change this to any color you prefer */
    color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.main-banner-left, .main-banner-right {
    flex: 1;
    padding: 0 20px;
}

.main-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.main-banner p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.btn-details {
    background-color: #ff9900; /* Feel free to choose a different color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.btn-details:hover {
    background-color: #e88e00;
}

.offer-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.offer-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.offer-card a {
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
}

.btn-learn {
    background-color: #007acc;
}

.btn-learn:hover {
    background-color: #006bb3;
}

.btn-enroll {
    background-color: #e74c3c;
}

.btn-enroll:hover {
    background-color: #d63b2a;
}

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

.btn-book:hover {
    background-color: #218c4d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-banner {
        flex-direction: column;
        text-align: center;
    }

    .offer-cards {
        flex-direction: column;
        gap: 10px;
    }
}



/* Hero Section */
.hero-section {
    background: url('/demo/good/images/web-banner.png') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-size: 3rem;
}

.hero-section p {
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: 20px;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: space-around;
}

.service-card {
    flex: 1;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 8px;
    text-align: center;
}

.service-card img {
    max-width: 100px;
    margin-bottom: 10px;
}

/* Offers Section */
.offers-section {
    padding: 20px;
    background-color: #ffebcc;
}

.offer-cards {
    display: flex;
    justify-content: space-around;
}

.offer-card {
    flex: 1;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 20px;
    text-align: center;
}

.faq-section .btn {
    background-color: #006699;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer 
.main-footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    padding: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #222;
}
*/

/* Footer Styles */
.footer {
    background-color: #333; /* Change this to any color you prefer */
    color: white;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.footer-top {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.footer h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1rem;
}

.contact-phone, .contact-email {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-phone a, .contact-email a {
    color: white;
    text-decoration: none;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px 0;
}

.footer-column ul {
    list-style-type: none;
}

.footer-column a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column.social-media h4 {
    margin-bottom: 10px;
}

.footer-column.social-media ul {
    display: flex;
    gap: 10px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column ul {
        margin-bottom: 20px;
    }

    .contact-info {
        flex-direction: column;
    }
}

