/*
 * Stopy v srdci v2.0 – pages.css
 * Zdroj: contact.css + inline <style> z about.php, faq.php,
 *        cooperation.php, trial.php, gdpr.php, terms.php,
 *        cookies.php, pricing.php, error.php
 */

/* =====================================================================
 * CONTACT – contact.css
 * ===================================================================== */
/* 
 * Stopy v srdci - Kontaktní stránka
 * CSS soubor pro stránku Kontakt
 */

/* Základní styly pro sekce */
.section-title {
    font-size: 1.6rem;
    font-family: var(--font-title, 'Patrick Hand', cursive);
    color: var(--primary-color, #b08968);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #b08968);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Úprava velikosti písma a mezer */
.container p, 
.container li {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

/* Karty s kontaktními osobami */
.contact-persons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

.contact-person-card {
    flex: 1 1 300px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: var(--border-radius-large, 12px);
    box-shadow: var(--shadow-small, 0 2px 5px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.contact-person-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
}

/* Kruhová fotografie / placeholder */
.contact-person-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-light, rgba(176, 137, 104, 0.1));
    border: 3px solid var(--primary-color, #b08968);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #b08968);
}

.photo-placeholder .icon {
    width: 60px;
    height: 60px;
}

/* Informace o kontaktní osobě */
.contact-person-info {
    flex: 1;
}

.contact-person-name {
    font-family: var(--font-title, 'Patrick Hand', cursive);
    font-size: 1.4rem;
    color: var(--primary-color, #b08968);
    margin-bottom: 5px;
}

.contact-person-position {
    font-size: 1rem;
    color: var(--text-secondary, #555);
    margin-bottom: 10px;
    font-style: italic;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-color, #2C2C2C);
}

.contact-icon {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color, #b08968);
    flex-shrink: 0;
}

.contact-person-responsibility {
    font-size: 0.95rem;
    color: var(--text-secondary, #555);
    border-left: 3px solid var(--primary-color, #b08968);
    padding-left: 10px;
}

/* Všeobecný kontakt */
.general-contact-container {
    margin-bottom: 20px;
}

.general-contact-card {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: var(--border-radius-large, 12px);
    box-shadow: var(--shadow-small, 0 2px 5px rgba(0, 0, 0, 0.1));
}

.general-contact-name {
    font-family: var(--font-title, 'Patrick Hand', cursive);
    font-size: 1.4rem;
    color: var(--primary-color, #b08968);
    margin-bottom: 15px;
}

/* Informace o společnosti */
.company-info-container {
    margin-bottom: 20px;
}

.company-info-card {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: var(--border-radius-large, 12px);
    box-shadow: var(--shadow-small, 0 2px 5px rgba(0, 0, 0, 0.1));
}

.company-info-row {
    display: flex;
    margin-bottom: 10px;
}

.company-info-label {
    flex: 0 0 150px;
    font-weight: var(--font-weight-semibold, 600);
    color: var(--primary-color, #b08968);
}

.company-info-value {
    flex: 1;
}

/* Kontaktní formulář */
.contact-form-section {
    margin-top: 40px;
    scroll-margin-top: 50px; /* Zajistí správné scrollování ke kotvě */
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: var(--font-weight-semibold, 600);
    color: var(--text-color, #2C2C2C);
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 1.05rem;
    border: 1px solid var(--secondary-color, #bcbcbc);
    border-radius: var(--border-radius-medium, 8px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color, #b08968);
    box-shadow: 0 0 0 3px var(--primary-light, rgba(176, 137, 104, 0.1));
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Alert messages */
.alert {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.alert-danger {
    background-color: #feebeb;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
}

.alert-success {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.alert-icon {
    margin-right: 10px;
    font-size: 18px;
}

.alert-content {
    flex: 1;
}

/* Cookie-style toggle přepínače */
.cookie-option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    gap: 5px; /* Zmenšená mezera mezi textem a togglem */
}

.cookie-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cookie-option-description {
    font-size: 0.9rem;
    color: var(--text-secondary, #666);
    margin-top: 3px;
}

/* Toggle přepínač - kopie z cookie banneru */
.cookie-toggle {
    width: 46px;
    height: 24px;
    background-color: #ccc;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 10px; /* Blíže k textu */
    flex-shrink: 0;
}

.cookie-toggle.enabled {
    background-color: var(--primary-color, #b08968);
}

.toggle-slider {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-toggle.enabled .toggle-slider {
    left: 24px;
}

/* Tlačítka a akce */
.form-actions {
    margin-top: 20px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color, #b08968);
    color: white;
    border: none;
    padding: 12px 20px; /* Zvětšený padding pro vyšší tlačítko */
    font-size: 1.1rem;
    border-radius: var(--border-radius-medium, 8px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover, #96735a);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
}

.btn-block {
    display: block;
    width: 100%;
}

/* Validace polí - společně s auth-tabs.css */
.field-valid {
    border-color: #2ecc71 !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" fill="%232ecc71"/></svg>');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px !important;
}

.field-error {
    border-color: #e74c3c !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" fill="%23e74c3c"/></svg>');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    margin-bottom: 8px;
    display: block;
    animation: fade-in 0.3s ease-in-out;
}

/* Formulář - uspořádání do dvou sloupců */
.form-row-2col {
    display: flex;
    gap: 20px;
}

.form-row-2col .form-group {
    flex: 1;
    min-width: 0; /* Důležité pro správné zalamování */
}

/* Přepracovaný poslední řádek formuláře - toggle a tlačítko v jednom řádku */
.form-row-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.gdpr-container {
    flex: 1;
}

.submit-container {
    flex: 1;
}

.submit-container .btn-primary {
    width: 100%; /* Tlačítko na celou šířku */
    padding: 12px 20px; /* O něco vyšší tlačítko */
    font-size: 1.15rem; /* O něco větší písmo */
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responzivita */
@media (max-width: 768px) {
    .contact-persons-container {
        flex-direction: column;
    }
    
    .contact-person-card {
        margin-bottom: 15px;
    }
    
    .company-info-row {
        flex-direction: column;
    }
    
    .company-info-label {
        margin-bottom: 5px;
    }
    
    .container p, 
    .container li {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .form-row-2col {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row-submit {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .gdpr-container, 
    .submit-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-person-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-person-photo {
        margin-bottom: 15px;
    }
    
    .contact-details li {
        justify-content: center;
    }
    
    .contact-person-responsibility {
        border-left: none;
        border-top: 3px solid var(--primary-color, #b08968);
        padding-left: 0;
        padding-top: 10px;
    }
}

/* Doplnění stylů pro validaci a správné zobrazení GDPR checkboxu */

/* Skrytí checkboxu, ale tak aby byl stále aktivní pro validaci */
.checkbox-wrapper {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Styl pro deaktivované tlačítko */
.btn-disabled {
    opacity: 0.65;
    cursor: not-allowed;
    background-color: #d0bba9 !important;
    border-color: #d0bba9 !important;
    box-shadow: none !important;
    transform: none !important;
}

.btn-disabled:hover {
    background-color: #d0bba9 !important;
    border-color: #d0bba9 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Animace pro chybové zprávy */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

/* Červená třída pro cookie-toggle při chybě */
.cookie-toggle.error {
    border: 2px solid #e74c3c;
    animation: shake 0.5s ease-in-out;
}

/* Zlepšení stylu chybových zpráv */
.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 8px;
    margin-bottom: 8px;
    display: block;
    animation: fade-in 0.3s ease-in-out;
    font-weight: 500;
}

/* Styly pro animaci úspěšné zprávy */
.alert-success {
    transition: opacity 0.5s ease-out;
}

/* Zajištění, že gdpr-container má relativní pozici pro správné zobrazení chybových zpráv */
.gdpr-container {
    position: relative;
}

/* Upravení ukazatele na toggle prvku pro lepší UX */
.cookie-toggle {
    cursor: pointer;
}

/* Zajištění správného zarovnání gdpr checkboxu a chybové zprávy */
.cookie-option {
    position: relative;
    margin-bottom: 15px;
}

.gdpr-container .error-message {
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0;
}

/* Zlepšení zvýraznění pro neúplný formulář */
.field-error:focus {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.25) !important;
}

.field-valid:focus {
    border-color: #2ecc71 !important;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.25) !important;
}

/* Upravení mobilního zobrazení */
@media (max-width: 768px) {
    .form-row-submit {
        flex-direction: column;
        gap: 20px;
    }
    
    .gdpr-container, 
    .submit-container {
        width: 100%;
    }
    
    .submit-container .btn-primary {
        width: 100%;
    }
}

/* Styl pro obrázky kontaktních osob */
.contact-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color, #b08968);
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
}

/* =====================================================================
 * ABOUT – inline styles z about.php
 * ===================================================================== */

  .container p, 
  .container li {
    font-size: 1.1rem;  /* Větší písmo pro běžný text (18px) */
    font-weight: 500;     /* Trochu tučnější */
    line-height: 1.8;     /* Větší mezery mezi řádky */
    letter-spacing: 0.03em; /* Mírně zvětšené mezery mezi písmeny */
  }
  
  /* Odsazení pouze pro desktop */
  @media (min-width: 768px) {
    .container .card-body {
      padding: 35px 40px !important; /* Zvětšené odsazení pouze na desktopu */
    }
    
    .container .card-header {
      padding: 25px 40px !important; /* Konzistentní odsazení s obsahem */
    }
  }
  
  @media (max-width: 768px) {
    .container p, 
    .container li {
      font-size: 1.05rem; /* Na mobilu mírně menší (17px) */
    }
  }
  
  /* Styly pro 'O projektu' stránku */
  .about-section {
    margin-bottom: 2.5rem;
  }
  
  .about-section:last-child {
    margin-bottom: 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #b08968);
  }
  
  .feature-list {
    padding-left: 1.5rem;
  }
  
  .feature-list li {
    margin-bottom: 0.8rem;
    position: relative;
  }
  
  .feature-list li:before {
    content: "•";
    color: var(--primary-color, #b08968);
    font-weight: bold;
    position: absolute;
    left: -1rem;
  }
  
  .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color, #b08968);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .highlight-box p:last-child {
    margin-bottom: 0;
  }
  
  /* Italika pro citáty */
  .quote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    padding: 0 1.5rem;
    margin: 1.5rem 0;
    position: relative;
  }
  
  .quote:before,
  .quote:after {
    content: """;
    font-size: 2.5rem;
    color: var(--primary-color, #b08968);
    position: absolute;
    opacity: 0.4;
  }
  
  .quote:before {
    top: -0.5rem;
    left: 0;
  }
  
  .quote:after {
    bottom: -2rem;
    right: 0;
    content: """;
  }
  
  .quote-author {
    text-align: right;
    color: #777;
    font-size: 0.9rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    margin-right: 1rem;
  }
  
  /* Nový styl pro příběh */
  .story-box {
    background-color: #f9f4f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  }
  
  .story-box:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(176, 137, 104, 0.2);
    font-family: serif;
  }
  
  .story-box .story-text {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .story-signature {
    text-align: right;
    font-style: italic;
    color: #555;
    margin-top: 1rem;
  }
  
  /* Zástupné místo pro budoucí obrázek */
  .image-placeholder {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 3rem 1rem;
    text-align: center;
    margin: 1.5rem 0;
    color: #777;
  }
  
  /* Úprava pro tlačítka */
  .btn {
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    color: white !important; /* Zajištění bílého textu při najetí myší */
    text-decoration: none; /* Odstranění případného podtržení */
  }
  
  .btn-primary, .btn-primary:focus, .btn-primary:active {
    color: white;
  }
  
  .btn-light, .btn-light:focus, .btn-light:active {
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    color: var(--primary-color) !important;
  }


/* =====================================================================
 * FAQ – inline styles z faq.php
 * ===================================================================== */

  .container p {
    font-size: 1.1rem;  /* Větší písmo pro běžný text (18px) */
    font-weight: 500;     /* Trochu tučnější */
    line-height: 1.8;     /* Větší mezery mezi řádky */
    letter-spacing: 0.03em; /* Mírně zvětšené mezery mezi písmeny */
  }
  
  /* Odsazení pouze pro desktop */
  @media (min-width: 768px) {
    .container .card-body {
      padding: 35px 40px !important; /* Zvětšené odsazení pouze na desktopu */
    }
    
    .container .card-header {
      padding: 25px 40px !important; /* Konzistentní odsazení s obsahem */
    }
  }
  
  @media (max-width: 768px) {
    .container p {
      font-size: 1.05rem; /* Na mobilu mírně menší (17px) */
    }
  }
  
  /* Styly pro rozbalovací FAQ */
  .faq-category {
    margin-bottom: 2rem;
  }
  
  .faq-category-title {
    font-size: 1.6rem;
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--primary-color, #b08968);
    padding-bottom: 0.5rem;
  }
  
  .faq-item {
    margin-bottom: 0.8rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .faq-question {
    background-color: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-family: var(--font-primary, 'Patrick Hand'), cursive;
  }
  
  .faq-question:hover {
    background-color: #f0f0f0;
  }
  
  .faq-question:after {
    content: "⮟";
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  .faq-question.active:after {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
  }
  
  .faq-answer.active {
    padding: 20px;
    max-height: 1000px; /* Dostatečně velká hodnota pro zobrazení celé odpovědi */
  }
  
  .faq-answer p {
    margin-bottom: 1rem;
  }
  
  .faq-answer p:last-child {
    margin-bottom: 0;
  }
  
  /* Přidat animaci pro hladší přechod */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .faq-answer.active {
    animation: fadeIn 0.5s ease-out;
  }
  
  /* Úprava pro tlačítka */
  .btn {
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    color: white !important; /* Zajištění bílého textu při najetí myší */
    text-decoration: none; /* Odstranění případného podtržení */
  }
  
  .btn-primary, .btn-primary:focus, .btn-primary:active {
    color: white;
  }
  
  .btn-light, .btn-light:focus, .btn-light:active {
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    color: var(--primary-color) !important;
  }


/* =====================================================================
 * COOPERATION – inline styles z cooperation.php
 * ===================================================================== */

  .container p, 
  .container li {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  
  /* Odsazení pouze pro desktop */
  @media (min-width: 768px) {
    .container .card-body {
      padding: 35px 40px !important;
    }
    
    .container .card-header {
      padding: 25px 40px !important;
    }
  }
  
  @media (max-width: 768px) {
    .container p, 
    .container li {
      font-size: 1.05rem;
    }
  }
  
  /* Styly pro stránku spolupráce */
  .cooperation-section {
    margin-bottom: 2.5rem;
  }
  
  .cooperation-section:last-child {
    margin-bottom: 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #b08968);
  }
  
  /* Oddělovací obrázky s textem */
  .cooperation-banner {
    position: relative;
    margin: 3rem 0;
    border-radius: var(--border-radius-large, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
  }
  
  .cooperation-banner-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .cooperation-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8), rgba(176, 137, 104, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
  }
  
  .cooperation-banner-text {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .cooperation-banner-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
  }
  
  .cooperation-banner-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .cooperation-banner-image {
      height: 200px;
    }
    
    .cooperation-banner-title {
      font-size: 2rem;
    }
    
    .cooperation-banner-subtitle {
      font-size: 1.1rem;
    }
    
    .cooperation-banner-overlay {
      padding: 1.5rem;
    }
  }
  
  /* Karty pro cílové skupiny */
  .target-groups-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .target-group-card {
    background-color: #fff;
    border-radius: var(--border-radius-large, 12px);
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color, #b08968);
    position: relative;
    overflow: hidden;
  }
  
  .target-group-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large, 0 6px 15px rgba(0, 0, 0, 0.2));
    border-left-color: var(--primary-hover, #96735a);
  }
  
  .target-group-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light, rgba(176, 137, 104, 0.1)), transparent);
    border-radius: 0 0 0 100px;
  }
  
  .target-group-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .target-group-icon {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color, #b08968);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-small, 0 2px 5px rgba(0, 0, 0, 0.1));
    overflow: hidden;
  }
  
  .target-group-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .target-group-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.4rem;
    color: var(--primary-color, #b08968);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .target-group-subtitle {
    color: var(--text-secondary, #555);
    font-size: 1rem;
    font-style: italic;
  }
  
  .target-group-content {
    position: relative;
    z-index: 2;
  }
  
  .target-group-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .target-group-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  
  .target-group-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .target-group-benefits li:before {
    content: "✓";
    color: var(--success-color, #2ecc71);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  
  /* Rozbalovací obsah */
  .cooperation-more-container {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
  
  .cooperation-more-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-family: 'Patrick Hand', cursive;
    border-radius: var(--border-radius-medium, 8px);
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: var(--primary-color, #b08968);
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    width: auto;
    min-width: 180px;
  }
  
  .cooperation-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large, 0 6px 15px rgba(0, 0, 0, 0.2));
    color: white;
    text-decoration: none;
  }
  
  .cooperation-more-content {
    display: none;
    background-color: var(--primary-light, rgba(176, 137, 104, 0.1));
    border-radius: var(--border-radius-medium, 8px);
    padding: 15px;
    margin-top: 10px;
    text-align: left;
    animation: cooperationMoreContentShow 0.3s ease;
  }
  
  .cooperation-more-content.active {
    display: block;
  }
  
  .cooperation-more-content p {
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    color: var(--text-color, #2C2C2C);
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .cooperation-more-content ul {
    padding-left: 20px;
    margin-bottom: 10px;
  }
  
  .cooperation-more-content li {
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    color: var(--text-color, #2C2C2C);
    line-height: 1.5;
    margin-bottom: 5px;
  }
  
  .cooperation-more-content .highlight-text {
    background-color: rgba(176, 137, 104, 0.2);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .target-groups-container {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .target-group-card {
      padding: 1.5rem;
    }
    
    .target-group-header {
      gap: 1rem;
    }
    
    .target-group-icon {
      width: 50px;
      height: 50px;
    }
    
    .target-group-title {
      font-size: 1.3rem;
    }
  }
  
  /* Step-boxy pro proces spolupráce - podle index.php */
  .cooperation-steps-container {
    margin: 2rem 0;
  }
  
  .cooperation-step-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color, #b08968);
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: var(--shadow-small, 0 2px 5px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
  }
  
  .cooperation-step-box:hover {
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
    transform: translateY(-3px);
  }
  
  .cooperation-step-content {
    flex: 1 1 70%;
    padding-right: 1.5rem;
  }
  
  .cooperation-step-image {
    flex: 0 0 30%;
    text-align: center;
  }
  
  .cooperation-step-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-small, 0 2px 5px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    display: inline-block;
  }
  
  .cooperation-step-image img:hover {
    transform: scale(1.05);
  }
  
  .cooperation-step-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.4rem;
    color: var(--primary-color, #b08968);
    margin-bottom: 0.8rem;
  }
  
  .cooperation-step-description {
    color: var(--text-color, #2C2C2C);
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  @media (max-width: 768px) {
    .cooperation-step-box {
      flex-direction: column;
    }
    
    .cooperation-step-content {
      flex: 1 1 100%;
      padding-right: 0;
      padding-bottom: 1rem;
    }
    
    .cooperation-step-image {
      flex: 1 1 100%;
      margin-top: 1rem;
    }
    
    .cooperation-step-image img {
      width: 100px;
      height: 100px;
    }
  }
  
  /* Highlight boxy */
  .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color, #b08968);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow-small, 0 2px 5px rgba(0, 0, 0, 0.1));
  }
  
  .highlight-box p:last-child {
    margin-bottom: 0;
  }
  
  .highlight-box-title {
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
  }
  
  /* Info boxy */
  .info-box {
    background-color: var(--primary-light, rgba(176, 137, 104, 0.1));
    border: 1px solid var(--primary-color, #b08968);
    border-radius: var(--border-radius-medium, 8px);
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
  }
  
  .info-box h3 {
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-top: 0;
    font-size: 1.4rem;
  }
  
  .info-box p:last-child {
    margin-bottom: 0;
  }
  
  /* CTA sekce */
  .cta-section {
    background-color: var(--primary-color, #b08968);
    color: white;
    border-radius: var(--border-radius-large, 12px);
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-large, 0 6px 15px rgba(0, 0, 0, 0.2));
  }
  
  .cta-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
  }
  
  .btn-cta {
    background-color: white;
    color: var(--primary-color, #b08968);
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-medium, 8px);
    text-decoration: none;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
  }
  
  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large, 0 6px 15px rgba(0, 0, 0, 0.2));
    color: var(--primary-color, #b08968);
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .cta-section {
      padding: 2rem 1.5rem;
    }
    
    .cta-title {
      font-size: 1.6rem;
    }
    
    .cta-text {
      font-size: 1rem;
    }
  }
  
  /* Animace */
  @keyframes cooperationMoreContentShow {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Úprava pro tlačítka */
  .btn {
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    color: white !important;
    text-decoration: none;
  }
  
  .btn-primary, .btn-primary:focus, .btn-primary:active {
    color: white;
  }
  
  .btn-light, .btn-light:focus, .btn-light:active {
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    color: var(--primary-color) !important;
  }


/* =====================================================================
 * TRIAL – inline styles z trial.php
 * ===================================================================== */

  /* Základní styly pro text - shodné s about.php */
  .container p, 
  .container li {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  
  /* Odsazení pouze pro desktop */
  @media (min-width: 768px) {
    .container .card-body {
      padding: 35px 40px !important;
    }
    
    .container .card-header {
      padding: 25px 40px !important;
    }
  }
  
  @media (max-width: 768px) {
    .container p, 
    .container li {
      font-size: 1.05rem;
    }
  }
  
  /* Styly pro trial stránku */
  .trial-section {
    margin-bottom: 2.5rem;
  }
  
  .trial-section:last-child {
    margin-bottom: 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #b08968);
  }
  
  /* Highlight box - shodné s about.php */
  .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color, #b08968);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .highlight-box p:last-child {
    margin-bottom: 0;
  }
  
  .highlight-box-title {
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
  }
  
  /* Feature list - shodné s about.php */
  .feature-list {
    padding-left: 1.5rem;
    list-style: none;
  }
  
  .feature-list li {
    margin-bottom: 0.8rem;
    position: relative;
  }
  
  .feature-list li:before {
    content: "•";
    color: var(--primary-color, #b08968);
    font-weight: bold;
    position: absolute;
    left: -1rem;
  }
  
  /* Kroky - styl z cooperation.php */
  .steps-container {
    margin: 2rem 0;
  }
  
  .step-box {
    background-color: #fff;
    border-radius: var(--border-radius-large, 12px);
    box-shadow: var(--shadow-small, 0 2px 5px rgba(0, 0, 0, 0.1));
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color, #b08968);
    transition: all 0.3s ease;
  }
  
  .step-box:hover {
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
    transform: translateY(-2px);
  }
  
  .step-title {
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .step-description {
    margin-bottom: 0;
  }
  
  /* Info box - shodné s cooperation.php */
  .info-box {
    background-color: #f9f4f0;
    border-radius: var(--border-radius-large, 12px);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-small, 0 2px 5px rgba(0, 0, 0, 0.1));
  }
  
  .info-box h3 {
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
  }
  
  .info-box p:last-child {
    margin-bottom: 0;
  }
  
  /* Timeline pro průběh trial */
  .timeline-container {
    margin: 1.5rem 0;
    padding-left: 1rem;
  }
  
  .timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 1.5rem;
    border-left: 2px solid var(--primary-color, #b08968);
  }
  
  .timeline-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color, #b08968);
    border-radius: 50%;
  }
  
  .timeline-item.warning::before {
    background: #e65100;
  }
  
  .timeline-item.warning {
    border-left-color: #e65100;
  }
  
  .timeline-item.danger::before {
    background: #c62828;
  }
  
  .timeline-item.danger {
    border-left-color: #c62828;
  }
  
  .timeline-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color, #b08968);
  }
  
  .timeline-item.warning .timeline-title {
    color: #e65100;
  }
  
  .timeline-item.danger .timeline-title {
    color: #c62828;
  }
  
  .timeline-text {
    font-size: 1rem;
    margin: 0;
  }
  
  /* FAQ accordion - shodné s faq.php */
  .faq-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .faq-question {
    background-color: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-family: 'Patrick Hand', cursive;
    transition: background-color 0.3s;
  }
  
  .faq-question:hover {
    background-color: #f0f0f0;
  }
  
  .faq-question:after {
    content: "⮟";
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  .faq-question.active:after {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
  }
  
  .faq-answer.active {
    padding: 20px;
    max-height: 1000px;
  }
  
  /* CTA sekce - shodné s cooperation.php */
  .cta-section {
    background: linear-gradient(135deg, var(--primary-color, #b08968) 0%, #8a6a4a 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-large, 12px);
    text-align: center;
    margin-top: 2rem;
    box-shadow: var(--shadow-medium, 0 4px 10px rgba(0, 0, 0, 0.15));
  }
  
  .cta-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.8rem;
    margin: 0 0 0.8rem 0;
  }
  
  .cta-text {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-cta {
    display: inline-block;
    background: white;
    color: var(--primary-color, #b08968);
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: var(--primary-color, #b08968);
    text-decoration: none;
  }
  
  /* Formáty QR kódů */
  .format-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .format-item {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
    flex: 1 1 100px;
    min-width: 100px;
  }
  
  .format-name {
    font-weight: bold;
    color: var(--primary-color, #b08968);
    font-size: 1.1rem;
  }
  
  .format-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
  }


/* =====================================================================
 * GDPR – inline styles z gdpr.php
 * ===================================================================== */

  .container p, 
  .container li {
    font-size: 1.1rem;  /* Větší písmo pro běžný text (18px) */
    font-weight: 500;     /* Trochu tučnější */
    line-height: 1.8;     /* Větší mezery mezi řádky */
    letter-spacing: 0.03em; /* Mírně zvětšené mezery mezi písmeny */
  }
  
  /* Odsazení pouze pro desktop */
  @media (min-width: 768px) {
    .container .card-body {
      padding: 35px 40px !important; /* Zvětšené odsazení pouze na desktopu */
    }
    
    .container .card-header {
      padding: 25px 40px !important; /* Konzistentní odsazení s obsahem */
    }
  }
  
  @media (max-width: 768px) {
    .container p, 
    .container li {
      font-size: 1.05rem; /* Na mobilu mírně menší (17px) */
    }
  }


/* =====================================================================
 * TERMS – inline styles z terms.php
 * ===================================================================== */

  .container p, 
  .container li {
    font-size: 1.1rem;  /* Větší písmo pro běžný text (18px) */
    font-weight: 500;     /* Trochu tučnější */
    line-height: 1.8;     /* Větší mezery mezi řádky */
    letter-spacing: 0.03em; /* Mírně zvětšené mezery mezi písmeny */
  }
  
  /* Odsazení pouze pro desktop */
  @media (min-width: 768px) {
    .container .card-body {
      padding: 35px 40px !important; /* Zvětšené odsazení pouze na desktopu */
    }
    
    .container .card-header {
      padding: 25px 40px !important; /* Konzistentní odsazení s obsahem */
    }
  }
  
  @media (max-width: 768px) {
    .container p, 
    .container li {
      font-size: 1.05rem; /* Na mobilu mírně menší (17px) */
    }
  }


/* =====================================================================
 * COOKIES – inline styles z cookies.php
 * ===================================================================== */

  .container p, 
  .container li {
    font-size: 1.1rem;  /* Větší písmo pro běžný text (18px) */
    font-weight: 500;     /* Trochu tučnější */
    line-height: 1.8;     /* Větší mezery mezi řádky */
    letter-spacing: 0.03em; /* Mírně zvětšené mezery mezi písmeny */
  }
  
  /* Odsazení pouze pro desktop */
  @media (min-width: 768px) {
    .container .card-body {
      padding: 35px 40px !important; /* Zvětšené odsazení pouze na desktopu */
    }
    
    .container .card-header {
      padding: 25px 40px !important; /* Konzistentní odsazení s obsahem */
    }
  }
  
  @media (max-width: 768px) {
    .container p, 
    .container li {
      font-size: 1.05rem; /* Na mobilu mírně menší (17px) */
    }
  }
  
  /* Styly pro cookies stránku */
  .cookies-section {
    margin-bottom: 2.5rem;
  }
  
  .cookies-section:last-child {
    margin-bottom: 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #b08968);
  }
  
  .cookies-list {
    padding-left: 1.5rem;
  }
  
  .cookies-list li {
    margin-bottom: 0.8rem;
    position: relative;
  }
  
  .cookies-list li:before {
    content: "•";
    color: var(--primary-color, #b08968);
    font-weight: bold;
    position: absolute;
    left: -1rem;
  }
  
  .highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color, #b08968);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .highlight-box p:last-child {
    margin-bottom: 0;
  }
  
  /* Tabulka cookies */
  .cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .cookies-table th,
  .cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .cookies-table th {
    background-color: var(--primary-color, #b08968);
    color: white;
    font-weight: 600;
    font-family: 'Patrick Hand', cursive;
  }
  
  .cookies-table tr:nth-child(even) {
    background-color: #f8f8f8;
  }
  
  .cookies-table tr:hover {
    background-color: #f1f1f1;
  }
  
  .cookies-table tr:last-child td {
    border-bottom: none;
  }
  
  /* Tlačítko pro nastavení cookies */
  .cookie-settings-btn {
    display: inline-block;
    background-color: var(--primary-color, #b08968);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
  }
  
  .cookie-settings-btn:hover {
    background-color: var(--primary-dark, #95735a);
    color: white;
    text-decoration: none;
  }

  /* Úprava pro tlačítka */
  .btn {
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    color: white !important; /* Zajištění bílého textu při najetí myší */
    text-decoration: none; /* Odstranění případného podtržení */
  }
  
  .btn-primary, .btn-primary:focus, .btn-primary:active {
    color: white;
  }
  
  .btn-light, .btn-light:focus, .btn-light:active {
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    color: var(--primary-color) !important;
  }


/* =====================================================================
 * PRICING – inline styles z pricing.php
 * ===================================================================== */

  .container p, 
  .container li {
    font-size: 1.1rem;  /* Větší písmo pro běžný text (18px) */
    font-weight: 500;     /* Trochu tučnější */
    line-height: 1.8;     /* Větší mezery mezi řádky */
    letter-spacing: 0.03em; /* Mírně zvětšené mezery mezi písmeny */
  }
  
  /* Odsazení pouze pro desktop */
  @media (min-width: 768px) {
    .container .card-body {
      padding: 35px 40px !important; /* Zvětšené odsazení pouze na desktopu */
    }
    
    .container .card-header {
      padding: 25px 40px !important; /* Konzistentní odsazení s obsahem */
    }
  }
  
  @media (max-width: 768px) {
    .container p, 
    .container li {
      font-size: 1.05rem; /* Na mobilu mírně menší (17px) */
    }
  }
  
  /* Styly pro cenové tabulky a boxy */
  .pricing-section {
    margin-bottom: 3rem;
  }
  
  .pricing-section:last-child {
    margin-bottom: 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color, #b08968);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #b08968);
  }
  
  .pricing-intro {
    margin-bottom: 2rem;
  }
  
  .pricing-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .pricing-box {
    flex: 1 1 300px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem; /* přidáno pro menší mezeru mezi boxy */
  }
  
  .pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
  }
  
  .pricing-box-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem; /* zmenšeno z 1.5rem */
    text-align: center;
  }
  
  .pricing-box-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.4rem; /* zmenšeno z 1.5rem */
    margin: 0;
    margin-bottom: 0.3rem; /* zmenšeno z 0.5rem */
  }
  
  .pricing-box-subtitle {
    opacity: 0.9;
    font-size: 1rem;
  }
  
  .pricing-box-price {
    font-size: 2.2rem; /* zmenšeno z 2.5rem */
    font-weight: bold;
    margin: 0.7rem 0; /* zmenšeno z 1rem */
  }
  
  .pricing-box-price-period {
    font-size: 1rem;
    opacity: 0.8;
  }
  
  .pricing-box-content {
    padding: 1rem; /* zmenšeno z 1.5rem */
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .pricing-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }
  
  .pricing-features li {
    padding: 0.3rem 0; /* zmenšeno z 0.5rem */
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    line-height: 1.4; /* přidáno pro menší mezery mezi řádky */
  }
  
  .pricing-features li:last-child {
    border-bottom: none;
  }
  
  .pricing-features li::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 0.8rem;
    font-weight: bold;
  }
  
  .pricing-box-content .btn {
    width: 100%;
    padding: 0.8rem;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
    color: white; /* Vždy bílý text */
    transition: all 0.3s ease;
  }
  
  .pricing-box-content .btn:hover {
    color: white !important; /* Zajištění bílého textu při najetí myší */
    text-decoration: none; /* Odstranění případného podtržení */
  }
  
  .price-notice {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
    opacity: 0.7;
  }
  
  /* Ceníková tabulka pro doplňkové služby */
  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-small);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .pricing-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    font-weight: normal;
  }
  
  .pricing-table tr:last-child td {
    border-bottom: none;
  }
  
  .pricing-table tr:nth-child(even) {
    background-color: #f8f8f8;
  }
  
  .pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
  }
  
  /* Responzivní tabulka */
  @media (max-width: 768px) {
    .table-responsive {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table th,
    .pricing-table td {
      padding: 0.8rem 1rem;
    }
  }
  
  /* Informační boxy */
  .info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .info-box-title {
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
  }
  
  .info-box p:last-child {
    margin-bottom: 0;
  }
  
  /* Callout box pro důležité informace */
  .callout-box {
    background-color: var(--primary-light);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
  }
  
  .callout-box h3 {
    font-family: 'Patrick Hand', cursive;
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.4rem;
  }
  
  .callout-box p:last-child {
    margin-bottom: 0;
  }
  
  /* Tlačítko pro výzvu k akci */
  .pricing-cta {
    text-align: center;
    margin: 2rem 0;
  }
  
  /* Globální úprava pro všechna tlačítka na stránce */
  .btn {
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    color: white !important; /* Zajištění bílého textu při najetí myší */
    text-decoration: none; /* Odstranění případného podtržení */
  }
  
  .btn-primary, .btn-primary:focus, .btn-primary:active {
    color: white;
  }
  
  .btn-light, .btn-light:focus, .btn-light:active {
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    color: var(--primary-color) !important;
  }
  
  .pricing-cta .btn {
    font-size: 1.2rem;
    padding: 0.8rem 3rem;
    font-family: 'Patrick Hand', cursive;
    color: white; /* Vždy bílý text */
    transition: all 0.3s ease;
  }
  
  .pricing-cta .btn:hover {
    color: white !important; /* Zajištění bílého textu při najetí myší */
    text-decoration: none; /* Odstranění případného podtržení */
  }
  
  /* Porovnávací tabulka plánů */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
  }
  
  .compare-table th,
  .compare-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
  }
  
  .compare-table th:first-child,
  .compare-table td:first-child {
    text-align: left;
  }
  
  .compare-table th:last-child,
  .compare-table td:last-child {
    border-right: none;
  }
  
  .compare-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    font-weight: normal;
  }
  
  .compare-table tr:last-child td {
    border-bottom: none;
  }
  
  .compare-table tr:nth-child(even) {
    background-color: #f8f8f8;
  }
  
  .feature-included {
    color: var(--success-color);
    font-size: 1.5rem;
  }
  
  .feature-not-included {
    color: var(--error-color);
    font-size: 1.5rem;
  }
  
  /* Dodatečné styly pro QR kód sekci */
  .qr-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .qr-image {
    flex: 0 0 300px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-medium);
    padding: 1rem;
    background: white;
    box-shadow: var(--shadow-small);
    text-align: center;
  }
  
  .qr-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  
  .qr-details {
    flex: 1 1 300px;
  }
  
  .qr-features {
    list-style-type: none;
    padding: 0;
  }
  
  .qr-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
  }
  
  .qr-features li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.5rem;
  }
  
  @media (max-width: 768px) {
    .qr-info {
      flex-direction: column;
    }
    
    .qr-image {
      margin: 0 auto;
    }
  }


/* =====================================================================
 * ERROR – inline styles z error.php
 * ===================================================================== */

    .error-container {
        min-height: calc(100vh - var(--header-height) - var(--footer-height) - 80px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .error-card {
        background-color: var(--white);
        border-radius: var(--border-radius-large);
        box-shadow: var(--shadow-card);
        overflow: hidden;
        transition: all var(--transition-medium);
    }
    
    .error-card-header {
        background-color: var(--primary-light);
        padding: 25px 30px;
        border-bottom: var(--border-width-medium) solid var(--primary-color);
    }
    
    .error-card-body {
        padding: 35px 30px;
    }
    
    .error-title {
        font-family: var(--font-title);
        color: var(--error-color);
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }
    
    .error-emoji {
        font-size: 3rem;
        display: block;
        margin-bottom: 1rem;
    }
    
    .error-message {
        font-family: var(--font-secondary);
        font-size: 1.1rem;
        line-height: 1.8;
        letter-spacing: 0.03em;
        color: var(--text-color);
        margin-bottom: 2rem;
    }
    
    .error-links-wrapper {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .error-links-wrapper .btn {
        min-width: 180px;
        margin-bottom: 10px;
        font-family: var(--font-title);
        font-size: 1.1rem;
        transition: all var(--transition-medium);
    }
    
    .error-links-wrapper .btn:hover {
        transform: var(--hover-lift);
        box-shadow: var(--shadow-hover);
    }
    
    .error-links-wrapper .btn:active {
        transform: var(--active-scale);
    }
    
    .error-suggestions {
        margin-top: 2.5rem;
        padding: 1.5rem;
        background-color: var(--primary-light);
        border-radius: var(--border-radius-medium);
        border-left: 4px solid var(--primary-color);
    }
    
    .error-suggestions-title {
        font-family: var(--font-title);
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .error-suggestions-list {
        list-style-type: none;
        padding-left: 0;
    }
    
    .error-suggestions-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
        font-size: 1.05rem;
    }
    
    .error-suggestions-list li:before {
        content: "•";
        color: var(--primary-color);
        font-weight: bold;
        position: absolute;
        left: 0.5rem;
    }
    
    /* Responzivní úpravy */
    @media (max-width: 768px) {
        .error-card-header {
            padding: 20px;
        }
        
        .error-card-body {
            padding: 25px 20px;
        }
        
        .error-title {
            font-size: 2rem;
        }
        
        .error-emoji {
            font-size: 2.5rem;
        }
        
        .error-message {
            font-size: 1rem;
        }
        
        .error-links-wrapper .btn {
            width: 100%;
            min-width: unset;
        }
    }
