/* Základní reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card {
    background: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
}

.image-wrapper {
    background: #fff;
    padding: 10px;
}

.main-img {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    padding: 30px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.subtitle {
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}

.footer-details {
    margin-bottom: 5px;
}

/* Responzivita pro malé mobily */
@media (max-width: 480px) {
    .content {
        padding: 20px;
    }
    h1 {
        font-size: 1.5rem;
    }
}