/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
    color: #000000;
}

header.header {
    text-align: center;
    background: #000000;
    padding: 20px 0;
}

header img {
    width: 100%;
    height: auto;
    display: block;
}

.half {
    width: 50%;
	margin: auto;
}

.main-content {
    padding: 20px;
}

.promo {
    text-align: center;
    margin-bottom: 20px;
}

.centered-text {
    text-align: center;
}

.styled-button {
    background-color: #04AA6D; /* Green background */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px; /* Rounded corners */
    transition-duration: 0.4s; /* Smooth transition */
}

.styled-button:hover {
    background-color: #45a049; /* Darker green on hover */
}

footer.footer {
    text-align: center;
    padding: 10px;
    background: #000000;
    color: white;
}

footer a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    header img {
        height: auto;
    }

    .styled-button {
        width: 100%;
        padding: 12px 0;
    }
	
    .half {
        width: 100%;
    }

}
