
/*** T3SB identifier: darkModeToggler */

.dm-toggler .bi {
	width: 1em;
	height: 1em;
	vertical-align: -.125em;
	fill: currentcolor;
}



/*** T3SB identifier: t3sbsCSSassets_59138 */

/* t3sbs_assets_59138 */
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --tamena-petrol: #2F5C5C;
            --tamena-sage: #A8C4BF;
            --tamena-sage-light: #C8DAD5;
            --tamena-beige: #D4B89C;
            --tamena-cream: #F5EDE0;
            --tamena-cream-dark: #E8DCC8;
            --tamena-white: #FEFEFE;
            --tamena-text: #333333;
            --tamena-text-light: #666666;
        }
        
        body {

            line-height: 1.7;
            color: var(--tamena-text);
            background-color: var(--tamena-white);
        }
        
        /* Decorative Circles Background */
        .bg-circles {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            overflow: hidden;
            opacity: 0.4;
            z-index: 0;
            pointer-events: none;
        }
        
        .circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.5;
        }
        
        .circle-1 {
            width: 300px;
            height: 300px;
            background: var(--tamena-sage-light);
            top: 10%;
            right: 5%;
        }
        
        .circle-2 {
            width: 200px;
            height: 200px;
            background: var(--tamena-cream-dark);
            top: 40%;
            right: 20%;
        }
        
        .circle-3 {
            width: 150px;
            height: 150px;
            background: var(--tamena-beige);
            top: 25%;
            right: 35%;
        }
        
        .circle-4 {
            width: 100px;
            height: 100px;
            background: var(--tamena-sage);
            top: 60%;
            right: 10%;
        }
        
        /* Header */

        
        .logo {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 2px;
        }
        
        .tagline {
            font-size: 0.9rem;
            color: var(--tamena-cream);
            margin-top: 0.3rem;
        }
        
        .header-contact {
            text-align: right;
        }
        
        .header-contact a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(to right, var(--tamena-cream) 0%, var(--tamena-sage-light) 100%);
            padding: 4rem 2rem;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        h1 {
            font-size: 2.8rem;
            color: var(--tamena-petrol);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-intro {
            font-size: 1.2rem;
            color: var(--tamena-text);
            max-width: 800px;
            margin-bottom: 2rem;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--tamena-petrol);
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(47, 92, 92, 0.3);
        }
        
        .cta-button:hover {
            background: #3d7070;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(47, 92, 92, 0.4);
        }
        
        /* Main Content */
        .container {

            margin: 0 auto;
            padding: 0 2rem;
        }
        
        section {
            padding: 4rem 2rem;
        }
        
        h2 {
            font-size: 2.2rem;
            color: var(--tamena-petrol);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 3px;
            background: var(--tamena-beige);
            border-radius: 2px;
        }
        
        h3 {
            font-size: 1.6rem;
            color: var(--tamena-petrol);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1.2rem;
            color: var(--tamena-text);
        }
        
        /* Alternating Sections */
        .section-light {
            background: var(--tamena-white);
        }
        
        .section-cream {
            background: var(--tamena-cream);
        }
        
        /* Two Column Layout */
        .two-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin: 2rem 0;
        }
        
        .column {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .column h4 {
            color: var(--tamena-petrol);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        /* Lists */
        ul {
            list-style: none;
            padding-left: 0;
        }
        
        ul li {
            padding: 0.5rem 0;
            padding-left: 1.8rem;
            position: relative;
            color: var(--tamena-text);
        }
        
        ul li::before {
            content: '●';
            color: var(--tamena-sage);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        
        /* Treatment Card */
        .treatment-card {
            background: white;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 12px;
            border-left: 5px solid var(--tamena-sage);
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .treatment-card h4 {
            color: var(--tamena-petrol);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        
        /* Process Steps */
        .process-steps {
            background: var(--tamena-cream-dark);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        
        .process-steps ol {
            counter-reset: step-counter;
            list-style: none;
        }
        
        .process-steps li {
            counter-increment: step-counter;
            padding: 1rem 0 1rem 3rem;
            position: relative;
            border-bottom: 1px solid rgba(47, 92, 92, 0.1);
        }
        
        .process-steps li:last-child {
            border-bottom: none;
        }
        
        .process-steps li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0.8rem;
            background: var(--tamena-sage);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        /* FAQ Section */
        .faq-item {
            background: white;
            padding: 1.5rem;
            margin: 1rem 0;
            border-radius: 8px;
            border-left: 4px solid var(--tamena-beige);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            font-weight: 600;
            color: var(--tamena-petrol);
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        
        .faq-answer {
            color: var(--tamena-text-light);
        }
        
        /* About Section */
        .about-box {
            background: linear-gradient(135deg, var(--tamena-sage-light) 0%, var(--tamena-cream-dark) 100%);
            padding: 3rem;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        /* Contact CTA */
        .contact-cta {
            background: var(--tamena-petrol);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin-top: 3rem;
        }
        
        .contact-cta h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .contact-cta h2::after {
            background: var(--tamena-beige);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .contact-item {
            text-align: center;
        }
        
        .contact-item strong {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--tamena-beige);
        }
        
        .contact-item a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
        }
        

        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .two-columns {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .header-contact {
                text-align: center;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .bg-circles {
                width: 100%;
                opacity: 0.2;
            }
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Highlight Box */
        .highlight-box {
            background: var(--tamena-sage-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 5px solid var(--tamena-petrol);
        }
        
        .highlight-box p {
            margin-bottom: 0;
            font-style: italic;
            color: var(--tamena-text);
        }



ul li::before {
    content: '●';
    color: var(--tamena-sage);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    background-image: none;
    top: 0px;
}
	

