body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
}

header {
    background-color: #FFF8E3; /* Changed background color */
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

header .logo {
    max-width: 150px;
    height: auto;
    margin-right: 20px;
}

header .hero-text {
    flex-grow: 1;
    text-align: center;
}

header .hero-text h1 {
    font-size: 2em;
    margin: 0;
}

header .hero-text p {
    font-size: 1em;
    margin: 5px 0 0 0;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
}

header nav ul li a:hover {
    color: #1a73e8;
}

.container {
    width: 80%;
    margin: 40px auto;
}

h2 {
    font-size: 2em;
    color: #D96E28;
    border-bottom: 2px solid #D96E28;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.about, .services, .contact {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: #f9f9f9;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #f1f3f4;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

/* Mobile styles */
body.mobile header .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

body.mobile header nav ul {
    display: none;
}

body.mobile .hero-text {
    order: 2;
    width: 90%;
}

body.mobile .hero-text h1 {
    font-size: 1.5em;
}

body.mobile .hero-text p {
    font-size: 1em;
}

body.mobile .logo {
    order: 1;
    margin-bottom: 20px;
}

body.mobile .container {
    width: 90%;
}

body.mobile h2 {
    font-size: 1.5em;
}

body.mobile ul li {
    padding: 10px;
    font-size: 0.9em;
}
