
/* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 10px 20px;
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Hero Section Styles */
.hero {
    background-image: url('20200712_160549.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

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

.hero p {
    font-size: 1.5em;
    margin-bottom: 2em;
}

/* About Section Styles */
.about {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.about p {
    font-size: 1em;
    line-height: 1.5;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

footer a {
    color: #f8f8f8;
    text-decoration: none;
}

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

footer p {
    margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2em;
    }
}
