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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #00274d;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.navbar .logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero {
    padding: 50px;
    background: #1e3a5f;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

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

.hero .btn-primary {
    padding: 15px 30px;
    background-color: #c0392b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero .btn-primary:hover {
    background-color: #a62b1f;
}

main {
    padding: 40px 20px;
}

.info-section {
    text-align: center;
}

.turnier-info {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

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

.cta-section {
    text-align: center;
    background-color: #f9f9f9;
    padding: 40px 20px;
    margin-top: 40px;
}

.cta-section .btn-primary {
    margin-top: 20px;
}

.contact-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    margin-top: 40px;
}

.contact-section form {
    display: block;
    width: 80%;
    max-width: 500px;
    margin: 20px auto;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-section button {
    width: 100%;
    padding: 10px;
    background-color: #c0392b;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}

footer {
    background-color: #00274d;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
