#html_custom_template {
--orange: #ff6600;
--light-bg: #f9fafb;
--white: #ffffff;
--text-dark: #1f2937;
--text-secondary: #6b7280;
--border-color: #e5e7eb;
--blue-link: #3e8edd;
--icon-color: var(--orange);
}

#html_custom_template body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: var(--light-bg);
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;
}

#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;
}

#html_custom_template .page-header {
text-align: center;
margin-bottom: 50px;
}
#html_custom_template .page-header h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 15px; }
#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: 800px; margin: 0 auto; line-height: 1.6; }

#html_custom_template .feature-split {
display: flex;
align-items: center;
gap: 40px;
background-color: var(--white);
border-radius: 24px;
border: 1px solid var(--border-color);
overflow: hidden;
margin-bottom: 50px;
}
#html_custom_template .feature-split--reversed {
flex-direction: row-reverse;
}
#html_custom_template .feature-split__text {
flex: 1 1 55%;
padding: 40px;
}
#html_custom_template .feature-split__text h2 {
font-size: 2rem;
font-weight: 700;
margin-top: 0;
margin-bottom: 20px;
line-height: 1.3; /* Pridané pre lepšie zobrazenie a opravu prekrývania textu */
}
#html_custom_template .feature-split__text p {
font-size: 1rem;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 20px;
}
#html_custom_template .feature-split__text ul {
list-style: none;
padding: 0;
margin: 0;
}
#html_custom_template .feature-split__text ul li {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 15px;
font-size: 1rem;
color: var(--text-secondary);
}
#html_custom_template .feature-split__text ul .icon {
width: 24px;
height: 24px;
flex-shrink: 0;
margin-top: 2px;
color: var(--orange);
}
#html_custom_template .feature-split__image {
flex: 1 1 45%;
min-height: 450px;
}
#html_custom_template .feature-split__image img {
width: 100%;
height: 100%;
object-fit: cover;
}

#html_custom_template .section-block {
background-color: var(--white);
border-radius: 24px;
border: 1px solid var(--border-color);
padding: 40px;
margin-bottom: 50px;
}
#html_custom_template .section-block h2 {
font-size: 2rem;
font-weight: 700;
text-align: center;
margin-top: 0;
margin-bottom: 40px;
line-height: 1.3; /* Pridané pre konzistentnosť a lepšiu čitateľnosť */
}

#html_custom_template .depo-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
#html_custom_template .depo-card {
background-color: var(--light-bg);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 20px;
}
#html_custom_template .depo-card h3 {
font-size: 1.2rem;
margin: 0 0 8px 0;
}
#html_custom_template .depo-card p {
margin: 0;
color: var(--text-secondary);
font-size: 1rem;
line-height: 1.6;
}

#html_custom_template .service-note {
background-color: #fffbeb;
border-left: 4px solid #f59e0b;
padding: 15px 20px;
border-radius: 8px;
margin-top: 30px;
font-size: 1rem;
text-align: center;
}
#html_custom_template .service-note p {
margin: 0;
color: #78350f;
}

#html_custom_template .final-cta {
text-align: center;
padding: 20px;
}
#html_custom_template .final-cta h2 {
font-size: 2.2rem;
font-weight: 800;
margin-bottom: 15px;
line-height: 1.3; /* Pridané pre konzistentnosť a lepšiu čitateľnosť */
}
#html_custom_template .final-cta h2 span {
color: var(--orange);
}
#html_custom_template .final-cta p {
font-size: 1.1rem;
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto 25px auto;
line-height: 1.7;
}

#html_custom_template .page-footer {
text-align: center;
color: var(--text-secondary);
font-size: 0.9rem;
padding: 20px 0;
border-top: 1px solid var(--border-color);
margin-top: 30px;
}

#html_custom_template .page-footer a {
color: var(--blue-link);
text-decoration: none;
}

#html_custom_template .page-footer a:hover {
text-decoration: underline;
}


@media (max-width: 992px) {
#html_custom_template .feature-split, #html_custom_template .feature-split--reversed {
flex-direction: column;
}
#html_custom_template .feature-split__image {
min-height: 300px;
width: 100%;
}
}
@media (max-width: 768px) {
#html_custom_template .section-block, #html_custom_template .feature-split__text {
padding: 25px 20px;
}
}
