/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background: white;
    padding: 20px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    display: inline-block;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo a:hover {
    transform: scale(1.03);
}

.logo-image {
    width: 240px;
    height: auto;
    margin-bottom: 0;
}

.logo-text {
    display: block;
    color: #2a6fa8;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text span {
    color: #4bb8e0;
}

.logo-tagline {
    display: block;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Navigation Menu */
.main-menu {
    background: linear-gradient(to bottom, #2a6fa8 0%, #1a5080 100%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.main-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-menu li {
    flex: 0 1 auto;
}

.main-menu a {
    display: block;
    padding: 18px 28px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.main-menu li:last-child a {
    border-right: none;
}

.main-menu a:hover,
.main-menu a.active {
    background: rgba(255, 255, 255, 0.18);
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    padding: 30px;
    min-height: 600px;
}

/* Main Content */
.main-content {
    background: white;
}

/* Slider */
.slider {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slide {
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

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

.slide-caption {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.72);
    color: white;
    padding: 28px 30px;
    max-width: 400px;
    border-radius: 5px;
}

.slide-caption h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: white;
    line-height: 1.3;
}

.slide-caption p {
    font-size: 14.5px;
    line-height: 1.6;
}

/* Article */
article {
    background: white;
}

article h1 {
    color: #333;
    font-size: 30px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2a6fa8;
    font-weight: 400;
    line-height: 1.3;
}

article h2 {
    color: #333;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 400;
}

article h2:first-child {
    margin-top: 0;
}

article h3 {
    color: #2a6fa8;
    font-size: 20px;
    margin: 22px 0 12px 0;
    font-weight: 600;
}

article p {
    margin-bottom: 18px;
    text-align: justify;
}

article ul {
    margin: 10px 0 20px 25px;
    list-style: disc;
}

article ul li {
    margin-bottom: 9px;
    padding-left: 4px;
}

article ul li strong {
    color: #2a6fa8;
}

.article-content {
    font-size: 15px;
}

.article-image {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 250px;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Price Table */
.price-table {
    background: #f4f8fc;
    border: 1px solid #d0e4f7;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}

.price-table h3 {
    color: #2a6fa8;
    font-size: 18px;
    margin: 0 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #2a6fa8;
}

.price-table ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-table ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #d0e4f7;
    margin: 0;
}

.price-table ul li:last-child {
    border-bottom: none;
}

.price-table ul li .price-name {
    color: #444;
}

.price-table ul li .price-value {
    color: #2a6fa8;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    margin-left: 15px;
}

/* Partner Quote */
.partner-quote {
    background: #f4f8fc;
    border-left: 4px solid #2a6fa8;
    padding: 20px;
    margin: 28px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(42, 111, 168, 0.1);
}

.partner-quote-logo {
    flex-shrink: 0;
}

.partner-quote-logo img {
    width: 80px;
    height: auto;
    border-radius: 5px;
}

.partner-quote-text {
    flex: 1;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.partner-quote-text a {
    color: #2a6fa8;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dotted #2a6fa8;
}

.partner-quote-text a:hover {
    color: #1a5080;
    border-bottom: 1px solid #1a5080;
}

/* ==============================
   CTA BOX
============================== */
.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, #1a5080 0%, #2a6fa8 100%);
    border-radius: 10px;
    padding: 28px 30px;
    margin: 0 0 30px 0;
    color: white;
    box-shadow: 0 6px 20px rgba(42, 111, 168, 0.25);
}

.cta-box-left {
    padding-right: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box-right {
    padding-left: 25px;
}

.cta-title {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px !important;
    color: white !important;
    text-align: left !important;
}

.cta-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 15px !important;
    text-align: left !important;
}

.cta-price {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.cta-price span {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.cta-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 18px !important;
    text-align: left !important;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #1a5080;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid white;
}

.cta-btn:hover {
    background: transparent;
    color: white;
}

.cta-reasons-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 12px !important;
    text-align: left !important;
}

.cta-reasons {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.cta-reasons li {
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0 !important;
}

.cta-reasons li:last-child {
    border-bottom: none;
}

/* PROCEDURE INFO GRID */
.procedure-info {
    background: #f4f8fc;
    border: 1px solid #c8dff0;
    border-radius: 8px;
    margin-bottom: 28px;
    overflow: hidden;
}

.procedure-info-title {
    background: #2a6fa8;
    color: white;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
}

.procedure-info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.proc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 10px;
    border-right: 1px solid #d0e4f7;
    text-align: center;
}

.proc-item:last-child {
    border-right: none;
}

.proc-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.proc-value {
    font-size: 15px;
    font-weight: 700;
    color: #2a6fa8;
}

/* TOC BOX */
.toc-box {
    background: #f4f8fc;
    border-left: 4px solid #2a6fa8;
    border-radius: 0 5px 5px 0;
    padding: 18px 20px;
    margin-bottom: 28px;
}

.toc-title {
    font-weight: 700;
    color: #2a6fa8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px !important;
    text-align: left !important;
}

.toc-box ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.toc-box ul li {
    margin-bottom: 6px !important;
    padding-left: 0 !important;
}

.toc-box ul li::before {
    content: "→ ";
    color: #2a6fa8;
}

.toc-box ul li a {
    color: #2a6fa8;
    text-decoration: none;
    font-size: 14px;
}

.toc-box ul li a:hover {
    text-decoration: underline;
}

/* VIEČKA GRID */
.viecka-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.viecko-card {
    background: #f4f8fc;
    border: 1px solid #c8dff0;
    border-radius: 8px;
    padding: 22px 20px;
}

.viecko-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.viecko-card h3 {
    color: #1a5080;
    font-size: 17px;
    margin: 0 0 10px 0 !important;
    font-weight: 700;
}

.viecko-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0 !important;
    text-align: left !important;
}

/* CHECK LIST */
.check-list {
    list-style: none !important;
    margin: 10px 0 20px 0 !important;
    padding: 0 !important;
}

.check-list li {
    padding: 9px 15px 9px 40px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14.5px;
    margin-bottom: 0 !important;
}

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

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    color: #2a6fa8;
    font-weight: 700;
    font-size: 16px;
}

.warning-list li::before {
    content: "!";
    color: #e07000;
    background: #fff3e0;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    left: 10px;
    top: 10px;
}

/* INFO HIGHLIGHT */
.info-highlight {
    background: #fffbf0;
    border-left: 4px solid #f0a030;
    border-radius: 0 5px 5px 0;
    padding: 18px 20px;
    margin: 20px 0 25px 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}

/* BEFORE-AFTER IMAGE (full width) */
.before-after-img {
    margin: 22px 0 28px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

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

/* CTA INLINE */
.cta-inline {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 25px 0;
}

.cta-inline .cta-btn {
    background: #2a6fa8;
    color: white;
    font-size: 15px;
    padding: 14px 30px;
    border-color: #2a6fa8;
    margin-bottom: 10px;
    display: inline-block;
}

.cta-inline .cta-btn:hover {
    background: #1a5080;
    border-color: #1a5080;
    color: white;
}

.cta-inline p {
    margin: 8px 0 0 0 !important;
    font-size: 13px;
    color: #999;
    text-align: center !important;
}

/* RESULTS GRID */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 22px 0;
}

.result-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.result-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.result-card-caption {
    padding: 14px 16px;
}

.result-card-caption strong {
    display: block;
    color: #2a6fa8;
    font-size: 14px;
    margin-bottom: 6px;
}

.result-card-caption p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0 !important;
    text-align: left !important;
}

/* Price table small text */
.price-table ul li small {
    display: block;
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

/* Sources Box */
.sources-box {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px 20px;
    margin-top: 30px;
    font-size: 13px;
    color: #888;
}

.sources-box p {
    margin-bottom: 5px;
    text-align: left;
}

.sources-box a {
    color: #2a6fa8;
    text-decoration: none;
}

.sources-box a:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    background: #f9f9f9;
    padding: 0;
}

.widget {
    background: white;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.widget h3 {
    background: linear-gradient(to bottom, #2a6fa8 0%, #1a5080 100%);
    color: white;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    border-bottom: 1px solid #f0f0f0;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    display: block;
    padding: 11px 18px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.widget ul li a:hover {
    background: #f0f6fc;
    color: #2a6fa8;
    padding-left: 24px;
}

.widget.info-box {
    background: #f4f8fc;
    border: 2px solid #2a6fa8;
}

.widget.info-box p {
    padding: 18px;
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: #555;
}

/* Footer */
footer {
    background: #1a2f42;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 14px;
    border-top: 4px solid #2a6fa8;
}

footer p {
    margin: 0 0 10px 0;
}

footer p:last-child {
    margin-bottom: 0;
}

footer .disclaimer {
    font-size: 12px;
    color: #aaa;
    font-style: italic;
    max-width: 800px;
    margin: 12px auto 0 auto;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-section {
    margin: 40px 0;
}

.faq-container {
    max-width: 100%;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2a6fa8;
    box-shadow: 0 2px 10px rgba(42, 111, 168, 0.1);
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 15.5px;
    color: #333;
    border: none;
    text-align: left;
    outline: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f4f8fc;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    color: #2a6fa8;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: #cc0000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    background: #fcfcfc;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 25px 25px 25px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    margin-bottom: 0 !important;
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
    text-align: left !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr 240px;
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .main-content {
        order: 1;
    }

    .main-menu ul {
        flex-direction: column;
    }

    .main-menu a {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 14px 20px;
    }

    .slide-caption {
        position: static;
        transform: none;
        max-width: 100%;
        border-radius: 0;
    }

    .article-image {
        float: none;
        margin: 0 auto 20px auto;
        max-width: 100%;
        display: block;
    }

    .partner-quote {
        flex-direction: column;
        text-align: center;
    }

    .partner-quote-logo img {
        width: 60px;
    }

    .price-table ul li {
        flex-direction: column;
        gap: 3px;
    }

    .price-table ul li .price-value {
        margin-left: 0;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 22px 20px;
    }

    .cta-box-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .cta-box-right {
        padding-left: 0;
    }

    .procedure-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .proc-item:nth-child(3) {
        border-right: none;
    }

    .viecka-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    header {
        padding: 20px 10px;
    }

    .logo-text {
        font-size: 32px;
    }

    .main-menu a {
        padding: 12px 15px;
        font-size: 12.5px;
    }

    .content-wrapper {
        padding: 15px;
    }

    article h1 {
        font-size: 24px;
    }

    article h2 {
        font-size: 20px;
    }

    article h3 {
        font-size: 17px;
    }

    .slide-caption h2 {
        font-size: 20px;
    }

    .procedure-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-price span {
        font-size: 30px;
    }

    .cta-box {
        padding: 18px 15px;
    }
}