* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lora', serif;
    color: #767575; 
    background-color: #FFFFFF; 
}

/* Hero Section */
.hero-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("/images/pexels-lone-waheed-520097326-20648064.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero1 {
    font-size: 48px;
    color: #FFFFFF; 
}

.hero2 {
    color: #F0F0F0;
    font-size: 25px;
}

.hero-btn {
    margin-top: 20px;
    font-size: 20px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

/* About Section */
.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-color: #F0F0F0;
    padding: 20px;
}

.about1 {
    font-size: 48px;
}

.about2 {
    font-size: 25px;
    margin-top: 10px;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.about-text {
    max-width: 600px;
    margin-top: 20px;
}

/* Navbar */
.navbar {
    background-color: #87CEEB;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar .logo {
    color: #767575;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar a {
    font-family: 'Lora', serif;
    color: #FFFFFF;
    text-decoration: none;
}

.navbar a:hover {
    color: #767575;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #FFFFFF;
}

/* Service Section */
.service-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.s-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.s-lists {
    font-size: 20px;
    list-style: none;
}

.s-lists li {
    margin-bottom: 30px;
    font-family: 'Lora', serif;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #F0F0F0;
}

.contact-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    align-self: flex-start;
    margin: 10px 0 5px 0;
    font-size: 16px;
    color: #767575; 
}

.contact-form textarea {
    resize: vertical;
    height: 100px;
}

.contact-form button {
    padding: 10px 20px;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #87CEEB;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.contact-form button:hover {
    background-color: #A9A9A9; 
}

/* Footer */
footer {
    background-color: #87CEEB;
    color: #767575;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .navbar.active ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: #87CEEB;
        padding: 20px 0;
    }

    .navbar.active ul li {
        margin: 10px 0;
        text-align: center;
    }

    .about-container {
        flex-direction: column;
    }

    .about-img, .about-text {
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }

    .service-container {
        flex-direction: column;
    }

    .s-title, .contact-title {
        font-size: 36px;
    }

    .s-lists {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero1 {
        font-size: 36px;
    }

    .hero2 {
        font-size: 18px;
    }

    .hero-btn {
        font-size: 18px;
        padding: 8px;
    }

    .s-title, .contact-title {
        font-size: 28px;
    }

    .s-lists {
        font-size: 16px;
    }

    .about2 {
        font-size: 18px;
    }
}
