@charset "UTF-8";
/* CSS Document */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #ffcc00;
    color: #990000;
    padding: 0.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

header h1 {
    margin: 0em 0em 0em 2em;
    font-size: 1.5em;
}

header img{
	width: 15%;
	height: auto;
	margin: 0em 0em 0em 2em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0em 2em 0em 0em;
    display: flex;
}

nav ul li {
    margin: 0em 0.5em;
}

nav ul li a {
    color: #990000;
    text-decoration: none;
    font-weight: bold;
	padding: 14px 16px;
	border-bottom: 3px solid transparent;
}

nav ul li a:hover {
border-bottom: 3px solid #990000;
}

.hero {
    background: #fff;
    padding: 0;
    text-align: center;
}

.hero h2 {
    margin: 0 0 1em;
    font-size: 2.5em;
    color: #990000;
}

.hero p {
    margin-bottom: 2em;
    font-size: 1.2em;
    color: #666;
}

.hero button {
    background: #990000;
    color: white;
    border: none;
    padding: 1em 2em;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.hero button:hover {
    background: #666;
}

.hero .container, .features, .about, .testimonials, .contact {
	text-align: center;
    padding: 3em 0;
}

.hero .container, .features .container, .about .container, .testimonials .container, .contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about {
    background: #990000;
    color: white;
	padding-top: 0;
}
.about p{
	line-height: 300%;
	padding: 0em 3em;
	font-size: 1.2em;
}
.features {
    background: #DDDBDB;
    color: white;
}

.feature, .testimonial {
    text-align: center;
}

h2 {
    font-size: 1.7em;
    color: #990000;
	font-weight: bold;
}

.about h2 {
	color: white;
	padding-top: 1em;
}
h3 {
    font-size: 1.5em;
    color: #333;
	font-weight: normal;
}

.feature p, .testimonial p {
    color: #666;
    font-size: 1.2em;
}

.testimonial {
    margin-bottom: 2em;
    background: #f9f9f9;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#heroImg img{
	width: 100%;
	height: auto;
}

#aboutImg img{
	width: 100%;
	height: auto;
}

footer {
    background: #ffcc00;
    color: #990000;
    text-align: center;
    padding: 1em 0;
}

footer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 0.5em 0;
    }

    .hero {
        padding: 2em 1em
}