/* InfoZaujemcovia.css */
/* Clean, readable text-focused style matching the website */

/* Page wrapper */
.page {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #ececec;
    padding: 20px;
}

/* Content container */
.page .content {
    max-width: 900px;
    margin: 0 auto;
}

/* Main page title */
.page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Section titles */
.page h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Divider under main title */
.page hr {
    border: 0;
    height: 2px;
    background-color: #ccc;
    margin-bottom: 25px;
}

/* Paragraph text */
.page p {
    line-height: 1.65;
    margin-bottom: 14px;
}

/* Improve spacing between logical blocks */
.page p + p {
    margin-top: 0;
}

/* Links (if present) */
.page a {
    color: #34495e;
    text-decoration: none;
}

.page a:hover {
    text-decoration: underline;
    color: #2c3e50;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .page {
        padding: 15px;
    }

    .page h1 {
        font-size: 2rem;
    }

    .page h2 {
        font-size: 1.5rem;
    }

    .page p {
        font-size: 0.95rem;
    }
}
