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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a7f;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.92);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #27ae60;
    color: #fff;
}

.btn-cookie:hover {
    background: #229954;
}

.btn-cookie-alt {
    background: #555;
    color: #fff;
}

.btn-cookie-alt:hover {
    background: #333;
}

.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #2980b9;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

.editorial-container {
    background: #fff;
}

.editorial-hero {
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 2.8rem;
    color: #fff;
    max-width: 900px;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    max-width: 700px;
    font-weight: 300;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.editorial-intro,
.editorial-story,
.editorial-problem,
.editorial-solution,
.editorial-testimonials,
.editorial-benefits,
.editorial-services,
.editorial-urgency,
.editorial-form,
.editorial-footer-cta {
    padding: 3rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.narrow-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.narrow-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.narrow-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #34495e;
    font-weight: 600;
}

.inline-image-block {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.inline-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.editorial-cta-inline {
    padding: 3rem 0;
}

.cta-box {
    background: #ecf0f1;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.btn-primary {
    display: inline-block;
    background: #2980b9;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a5a7f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list strong {
    color: #e74c3c;
}

.solution-block {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid #27ae60;
}

.solution-block h3 {
    color: #27ae60;
    margin-top: 0;
}

.testimonial-item {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 1rem;
    color: #555;
}

.editorial-cta-block {
    padding: 4rem 0;
    background: #34495e;
}

.cta-large {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-large h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-large p {
    font-size: 1.15rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.btn-accent {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

.services-list {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.service-item {
    margin: 2rem 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-item.featured {
    border-color: #e74c3c;
    position: relative;
}

.service-item.featured::before {
    content: "NEJPOPULÁRNĚJŠÍ";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #2c3e50;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    margin-bottom: 1.5rem;
    color: #555;
}

.service-body ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.urgency-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 4px;
}

.urgency-note {
    margin: 0;
    font-weight: 500;
    color: #856404;
}

.form-main {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.final-note {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    font-style: italic;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.page-header {
    padding: 4rem 0 2rem;
    background: #f8f9fa;
}

.page-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

.editorial-section {
    padding: 3rem 0;
}

.values-list {
    margin: 2rem 0;
}

.value-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    margin-top: 0;
    color: #2980b9;
}

.services-detail {
    padding: 2rem 0;
}

.service-detail-item {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-header-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header-detail h2 {
    margin: 0;
    flex: 1;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.badge-popular,
.badge-save {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
}

.badge-save {
    background: #f39c12;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.included-list {
    list-style: none;
    margin: 1.5rem 0;
}

.included-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.service-note p {
    margin: 0;
    color: #856404;
}

.service-cta {
    margin-top: 2rem;
}

.featured-service {
    background: #f0f8ff;
}

.premium-service {
    background: #fff8f0;
}

.services-comparison {
    padding: 4rem 0;
    background: #f8f9fa;
}

.comparison-table {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table thead {
    background: #2c3e50;
    color: #fff;
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.contact-section {
    padding: 3rem 0;
}

.contact-info-block {
    margin: 2rem 0;
}

.contact-item {
    margin: 2.5rem 0;
}

.contact-item h3 {
    color: #2980b9;
    margin-bottom: 0.7rem;
}

.contact-item p {
    margin: 0.5rem 0;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-directions {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-note-box {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin: 2rem 0;
}

.contact-note-box p {
    margin: 0;
}

.thanks-page {
    padding: 4rem 0;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.thanks-info {
    max-width: 800px;
    margin: 3rem auto;
    text-align: left;
}

.thanks-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2980b9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    margin: 0;
    color: #555;
}

.thanks-service-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-service-info strong {
    color: #2c3e50;
}

.thanks-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-note p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

.legal-page {
    background: #fff;
}

.legal-section {
    padding: 2rem 0 4rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-section ul li {
    margin: 0.5rem 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table thead {
    background: #34495e;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .narrow-text {
        padding: 0 1.5rem;
    }

    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-cookie,
    .btn-cookie-alt {
        flex: 1;
    }

    .benefits-grid {
        flex-direction: column;
    }

    .benefit-card {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-header-detail {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .thanks-step {
        flex-direction: column;
        gap: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-accent {
        width: 100%;
        text-align: center;
    }
}