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

.logo-container {
    background-color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}

header {
    background: url('/solar-sample/images/hero-bg2.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: auto;
}

.header-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2); /* Adding semi-transparent background for better text readability */
    padding: 40px 20px;
    border-radius: 8px;
}

.headline {
    width: 100%;
    color: white; /* Ensuring text is white */
    text-align: center;
}

.headline h1 {
    margin: 0;
    font-size: 2.5em;
}

.headline p {
    font-size: 1.2em;
    margin-top: 10px;
}

.form-container {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px auto 0;
    color: #333; /* Set default text color to black */
}

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

form h3 {
    margin-top: 0;
    color: #333; /* Set form header color to black */
}

label {
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333; /* Set label color to black */
}

input, select, button {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    background-color: #fff;
    color: #333; /* Ensure the text color is visible */
}

input::placeholder, select::placeholder {
    color: #aaa; /* Placeholder text color */
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

.about-us {
    background-color: #e9ecef; /* Light grey background color */
    padding: 40px 20px;
    color: #333;
    width: 100%;
}

.about-us .content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us h2 {
    margin-top: 0;
}

.about-us p {
    margin-bottom: 10px;
}

.why-use-us {
    background-color: #f4f4f4; /* Same background as the body */
    padding: 40px 20px;
    text-align: center;
}

.why-use-us h2 {
    font-size: 2em;
    margin-top: 0;
}

.split-section {
    background-color: #ffffff;
    display: flex;
    padding: 40px 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.split-section .container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
}

.split-section .left, .split-section .right {
    padding: 20px;
}

.split-section .left {
    width: 100%;
}

.split-section .right {
    width: 100%;
    background: url('placeholder.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 8px;
    min-height: 300px;
}

.split-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.split-section li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.holiday-offer {
    background-color: #e9ecef; /* Light grey background color */
    padding: 40px 20px;
    text-align: center;
}

.holiday-offer h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.holiday-offer .offer-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.holiday-offer .offer-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.holiday-offer .offer-list-item span {
    font-size: 2em;
    font-weight: bold;
    margin-right: 10px;
    color: #4CAF50;
}

.holiday-offer .offer-list-item p {
    margin: 0;
    font-size: 1.2em;
}

.holiday-offer p {
    font-size: 1.2em;
    margin: 20px 0;
}

.holiday-offer .button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1.2em;
    color: white;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.holiday-offer .button:hover {
    background-color: #45a049;
}

.holiday-offer h3 {
    font-size: 2em;
    margin-top: 40px;
    color: #333;
}

.new-south-wales {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.new-south-wales h2 {
    font-size: 3em;
    margin: 0;
    color: #333;
}

.image-grid {
    background: url('https://funescapes.com.au/wp-content/uploads/2021/01/54267071-0-Depositphotos-205012.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
}

.image-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.image-grid .container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.why-choose-us, .testimonials {
    padding: 40px 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.why-choose-us h2, .testimonials h2 {
    margin-top: 0;
}

.why-choose-us ul {
    list-style-type: none;
    padding: 0;
}

.why-choose-us li {
    background: #e2e2e2;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.1em;
}

.testimonials {
    text-align: center;
}

blockquote {
    background: #e2e2e2;
    padding: 20px;
    border-left: 5px solid #4CAF50;
    margin: 20px auto;
    width: 80%;
    border-radius: 5px;
    font-size: 1.1em;
    font-style: italic;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Media Queries for responsiveness */
@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
    }

    .headline {
        width: 60%;
        text-align: left;
    }

    .form-container {
        width: 35%;
        margin-left: 20px;
        margin-top: 0;
    }

    .split-section .container {
        flex-direction: row;
    }

    .split-section .left, .split-section .right {
        width: 40%;
    }

    .split-section .right {
        width: 60%;
    }

    .image-grid .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .headline h1 {
        font-size: 3em;
    }

    .headline p {
        font-size: 1.5em;
    }

    .holiday-offer h2, .holiday-offer h3, .new-south-wales h2 {
        font-size: 2.5em;
    }
}
