/* General reset for margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font Settings */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Container class for aligning content */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
header {
    background: linear-gradient(90deg, #333, #fff, #ff0000, #008000);
    color: white;
    padding: 20px 0;
    text-align: center;
    height: 120px;
}

header .logo {
    font-size: 2em;
    font-weight: bold;
}


.btn {
    padding: 10px 20px;
    background-color: #f4a261;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #ffffff;
    color: #f4a261;
}

/* About Section Styling */
.about {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #666;
}

/* Services Section Styling */
.services {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.service {
    margin-bottom: 40px;
}

.service h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.service p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 10px 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header .logo {
        font-size: 1.5em;
    }

    nav ul {
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 8px 16px;
    }

    .about-content {
        max-width: 90%;
    }

    .service h2 {
        font-size: 2em;
    }

    .service p {
        font-size: 1em;
    }
}

/* Hover effects for services section */
.service:hover {
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
}
