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

body {
    font-family: 'Jost', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    margin: 0;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    padding: 20px 0;
    text-align: center;
    color: white;
}

.footer {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    padding: 20px 0;
    text-align: center;
}

.content {
    padding: 20px 30px;
    text-align: center;
    background-color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #4a90e2;
}

.description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
}

h2 {
    font-size: 2em;
    color: #4a90e2;
    margin-bottom: 30px;
}

.contact-info {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.contact-info a {
    color: #4a90e2;
    text-decoration: none;
}

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

.logo {
    margin: 30px 0;
}

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

.footer-link {
    color: white;
    text-decoration: underline;
    font-size: 1em;
}

.footer-link:hover {
    color: #e0e0e0;
}

/* Mobilní responzivita */
@media screen and (max-width: 768px) {
    .content {
        padding: 15px 20px;
        justify-content: flex-start !important;
        align-items: stretch !important;
    }
    
    h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }
    
    h2 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 1em;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .contact-info {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .logo {
        margin: 15px 0;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    .footer {
        padding: 10px 10px;
    }
    
    .footer-link {
        font-size: 0.8em;
        line-height: 1.3;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding: 5px 15px;
    }
    
    h1 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    
    h2 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 0.85em;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .contact-info {
        font-size: 0.85em;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .logo {
        margin: 15px 0;
    }
    
    .logo img {
        max-width: 100px;
    }
    
    .footer {
        padding: 10px 8px;
    }
    
    .footer-link {
        font-size: 0.75em;
        line-height: 1.3;
    }
}
