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

/* Header */
.header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.nav-list {
    list-style-type: none;
}

.nav-list li {
    display: inline;
    margin: 0 15px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-list a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #f9b233;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

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

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

.cta-btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-btn:hover {
    background-color: #444;
}

/* Section Styles */
.section {
    padding: 40px 20px;
    text-align: center;
}

.concept, .mvv, .about, .services {
    background-color: white;
    margin-bottom: 20px;
}

.section h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.section ul {
    list-style-type: none;
    padding: 0;
}

.section ul li {
    margin: 10px 0;
    font-size: 1.1em;
}

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