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

body {
    font-family: Arial, sans-serif;
    background-color: #f4e3d3; /* Light brownish background */
    color: #5a4634; /* Dark brown for text */
}

header {
    position: fixed;
    width: 100%;
    background-color: #c4a484; /* Light brown for header */
    padding: 15px 0;
    text-align: center;
    top: 0;
    left: 0;
    transition: top 0.3s;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

section {
    padding: 60px 0;
    text-align: center;
}

#home,
#about,
#requirements {
    background-color: #f4e3d3; /* Light brownish background for sections */
}

h1,
h2 {
    margin-bottom: 20px;
    font-size: 40px;
}

p,
ul {
    font-size: 1.1em;
    line-height: 1.6;
}

ul {
    list-style: disc;
    padding-left: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #c4a484; /* Light brown */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #a67c52; /* Slightly darker light brown for hover effect */
}

.image-gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.image-gallery img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-gallery img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

footer {
    background-color: #5a4634; /* Dark brown for footer */
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer .container {
    width: 80%;
    margin: auto;
    text-align: left;
}

footer form h3 {
    margin-bottom: 15px;
}

footer form p {
    margin-bottom: 10px;
}

footer input[type="text"],
footer input[type="email"],
footer input[type="tel"],
footer textarea {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

footer textarea {
    height: 100px;
    resize: none;
}

footer button {
    background-color: #c4a484; /* Light brown */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

footer button:hover {
    background-color: #a67c52; /* Slightly darker light brown for hover effect */
}

footer .container {
    display: flex;
    flex-direction: row;
}

footer .container .form-data {
    width: 100%;
}

footer .container .copyright {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
}

@media screen and (max-width: 768px) {
    /* Add responsive styles here if needed */
}
