body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 40px 20px;
    color: #2d3436;
    line-height: 1.6;
    background-color: #f0f7f0; 
}


main {
    background: white;
    padding: 40px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 128, 0, 0.1);
    border-radius: 8px;
}


header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    color: #2e8b57; 
    font-size: 2.5em;
    margin-bottom: 5px;
}

h2 {
    color: #008000; 
    border-bottom: 2px solid #a2d2a2;
    padding-bottom: 5px;
    margin-top: 30px;
}

h3 {
    color: #2e8b57;
}


section {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}


ul {
    padding-left: 20px;
}

a {
    color: #008000;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #2e8b57;
    text-decoration: underline;
}


.kontakt-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.kontakt-wrapper img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #008000; 
    object-fit: cover;
}

footer {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 50px;
}