/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333;
}

/* Header */
header {
    display: flex;
	justify-content: space-between;
	align-items: center;
    padding: 10px 20px;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container .logo {
    max-width: 180px;
}

.header-container .contact-button {
    background-color: #469b2d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.header-container .contact-button:hover {
    background-color: #469b2d;
}

/* Hero Section */
.hero {
    background-color: #FFFFFF;
    color: black;
    padding: 30px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: 1.2em;
    margin-top: 0;
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.content-box {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.content-box img {
    max-width: 240px;
    margin-bottom: 40px;
}

.content-box p {
    font-size: 1em;
    color: #333;
}

.content-box a {
    text-decoration: none;
    color: #469b2d;
    font-weight: 600;
}

.content-box a:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 40px 20px;
    background-color: white;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.about h2 {
    color: #007a33;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #FFFFFF;
}

.cta-button {
    background-color: #469b2d;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2em;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #469b2d;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: white;
}
