/* styles.css */

/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
    margin: 0;
}

header {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header h1 {
    margin: 0;
}

.hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    display: none;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #2980b9;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #1a5980;
}

.nav-menu {
    display: flex;
    justify-content: center;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    background-color: #2980b9;
    position: absolute;
    top: 60px;
    width: 100%;
    left: 0;
    z-index: 1;
}

.nav-menu.active a {
    margin: 10px 0;
}

section {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-top: 0;
}

.service-item, .testimonial-item {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

form button {
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #2980b9;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #3498db;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    section {
        padding: 15px;
    }
}
