/* === ZÁKLADNÍ NASTAVENÍ, FONT A BARVY - MĚLO BY BÝT V GLOBÁLNÍM CSS === */
#html_custom_template {
--orange: #ff6600;
--light-bg: #f9fafb;
--white: #ffffff;
--text-dark: #1f2937;
--text-secondary: #6b7280;
--border-color: #e5e7eb;
}

#html_custom_template body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: transparent; /* Pro produkci, aby se přizpůsobilo pozadí webu */
color: var(--text-dark);
overflow-x: hidden;
}

#html_custom_template .showroom-section *, #html_custom_template .showroom-section *:before, #html_custom_template .showroom-section *:after {
box-sizing: border-box;
}

/* Hlavní kontejner, který řeší odsazení shora */
#html_custom_template .showroom-section {
font-family: 'Inter', sans-serif;
background-color: transparent;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 40px 0;
overflow-x: hidden;
}

#html_custom_template .page-wrapper {
width: 100%;
max-width: 1300px;
margin: 0 auto;
padding: 0 20px;
overflow: hidden;
}

/* === NADPISY === */
#html_custom_template .page-header {
text-align: center;
margin-bottom: 20px;
}
#html_custom_template .page-header h1 { font-size: clamp(2.5rem, 5vw, 3rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 10px; }
#html_custom_template .page-header h1 span { color: var(--orange); }
#html_custom_template .page-header p { font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--text-secondary); max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* Patička */
#html_custom_template .page-footer { text-align: center; padding: 30px 20px; margin-top: 60px; border-top: 1px solid var(--border-color); font-size: 0.9rem; color: var(--text-secondary); }
#html_custom_template .page-footer a { color: #3e8edd; text-decoration: none; }
#html_custom_template .page-footer a:hover { text-decoration: underline; }

/* === STYLY PRO STRÁNKU S PODMÍNKAMI === */
#html_custom_template .terms-content {
background-color: var(--white);
border: 1px solid var(--border-color);
border-radius: 24px;
padding: 30px 40px;
max-width: 900px; /* Omezení šířky pro lepší čitelnost textu */
margin: 40px auto 0 auto; /* Odsazení a vycentrování bloku */
}

#html_custom_template .terms-content h2 {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-dark);
margin-top: 30px;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid var(--border-color);
}

#html_custom_template .terms-content h2:first-of-type {
margin-top: 0;
}

#html_custom_template .terms-content p, #html_custom_template .terms-content li {
font-size: 1rem;
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: 15px;
}

#html_custom_template .terms-content a {
color: #3e8edd;
font-weight: 500;
}

#html_custom_template .terms-content a:hover {
text-decoration: underline;
}

#html_custom_template .terms-content ul {
list-style-position: outside;
padding-left: 20px;
margin-bottom: 20px;
}

#html_custom_template .terms-content ul ul {
margin-top: 15px;
padding-left: 25px;
}

#html_custom_template .terms-content li {
padding-left: 5px;
margin-bottom: 10px;
}

#html_custom_template .terms-content .address-block {
background-color: var(--light-bg);
padding: 20px;
border-radius: 12px;
margin: 20px 0;
font-style: normal;
border: 1px solid var(--border-color);
line-height: 1.7;
}

#html_custom_template .terms-content .date-signature {
text-align: right;
margin-top: 40px;
font-style: italic;
color: var(--text-dark);
}

/* === RESPONZIVITA === */
@media (max-width: 768px) {
#html_custom_template .page-wrapper {
padding: 0 15px;
}
#html_custom_template .terms-content {
padding: 20px;
}
#html_custom_template .page-header h1 {
font-size: 2rem;
}
}
