
/*** T3SB identifier: darkModeToggler */

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



/*** T3SB identifier: t3sbsCSSassets_59199 */

/* t3sbs_assets_59199 */

        
        :root {
            --sage: #8B9D83;
            --deep-sage: #6B7C63;
            --cream: #F5F1E8;
            --sand: #E8DCC4;
            --earth: #A67C52;
            --clay: #B8856A;
            --forest: #4A5D3F;
            --text-dark: #2C3E2C;
            --text-mid: #5A6B5A;
            --white: #FFFFFF;
            

            
            --radius: 2px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--sans);
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--cream);
            overflow-x: hidden;
        }
        
        /* Header */
        header {
            background: var(--white);
            border-bottom: 1px solid var(--sand);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .header-content {

            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: var(--serif);
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--forest);
            text-decoration: none;
            letter-spacing: 0.02em;
        }
        
        nav a {
            margin-left: 2rem;
            color: var(--text-mid);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }
        
        nav a:hover {
            color: var(--sage);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--sage);
            transition: var(--transition);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
            padding: 6rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 157, 131, 0.15) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(166, 124, 82, 0.1) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.05); }
        }
        
        .hero-content {
            max-width: 1540px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .breadcrumb {
            font-size: 0.9rem;
            color: var(--text-mid);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.2s;
        }
        
        .breadcrumb a {
            color: var(--sage);
            text-decoration: none;
        }
        
        h1 {
            font-family: var(--serif);
            font-size: 3.5rem;
            font-weight: 500;
            color: var(--forest);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            max-width: 900px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.4s;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-mid);
            max-width: 700px;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.6s;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--sage);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid var(--sage);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.8s;
        }
        
        .cta-button:hover {
            background: transparent;
            color: var(--sage);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 157, 131, 0.2);
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(20px);
            }
        }
        
        /* Main Content */
        .container {

            margin: 0 auto;
            padding: 0 2rem;
        }
        
        main {
            padding: 4rem 0;
        }
        
        section {
            margin-bottom: 5rem;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
            animation-timeline: view();
            animation-range: entry 0% cover 30%;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        h2 {
            font-family: var(--serif);
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--forest);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--sage);
        }
        
        h3 {
            font-family: var(--serif);
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--deep-sage);
            margin: 2.5rem 0 1rem;
        }
        
        p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }
        
        strong {
            color: var(--forest);
            font-weight: 600;
        }
        
        /* Symptom Cards */
        .symptom-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .symptom-card {
            background: var(--white);
            padding: 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--sand);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .symptom-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--sage), var(--clay));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }
        
        .symptom-card:hover::before {
            transform: scaleX(1);
        }
        
        .symptom-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(139, 157, 131, 0.15);
        }
        
        .symptom-card h3 {
            margin-top: 0;
            font-size: 1.5rem;
        }
        
        /* List Styles */
        ul {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        ul li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            line-height: 1.7;
        }
        
        ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--sage);
        }
        
        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, var(--white) 0%, var(--sand) 100%);
            border-left: 4px solid var(--sage);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: var(--radius);
            box-shadow: 0 4px 15px rgba(139, 157, 131, 0.1);
        }
        
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        
        /* Process Steps */
        .process-steps {
            margin: 3rem 0;
        }
        
        .step {
            background: var(--white);
            padding: 2rem;
            margin-bottom: 1.5rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--clay);
            transition: var(--transition);
        }
        
        .step:hover {
            border-left-color: var(--sage);
            transform: translateX(8px);
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--sage);
            color: var(--white);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 600;
            margin-right: 1rem;
            font-family: var(--serif);
            font-size: 1.2rem;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--forest) 0%, var(--deep-sage) 100%);
            color: var(--white);
            padding: 4rem 2rem;
            border-radius: var(--radius);
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        }
        
        .contact-content {
            position: relative;
            z-index: 2;
        }
        
        .contact-section h2 {
            color: var(--white);
        }
        
        .contact-section h2::after {
            background: var(--cream);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .contact-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: var(--radius);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-item h3 {
            color: var(--cream);
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 0.5rem;
        }
        
        .contact-item p {
            color: var(--white);
            margin: 0;
        }
        
        .contact-item a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-item a:hover {
            color: var(--cream);
        }
        
        /* Footer */
        footer {
            background: var(--forest);
            color: var(--cream);
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            font-family: var(--serif);
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: var(--cream);
            text-decoration: none;
            line-height: 1.8;
            transition: var(--transition);
        }
        
        .footer-section a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(245, 241, 232, 0.2);
            text-align: center;
            font-size: 0.9rem;
            color: var(--cream);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero {
                padding: 4rem 2rem 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            nav {
                display: none;
            }
            
            .symptom-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Decorative circles (matching Tamena logo concept) */
        .circle-decoration {
            position: fixed;
            pointer-events: none;
            opacity: 0.4;
            z-index: -1;
        }
        
        .circle-1 {
            top: 20%;
            right: 5%;
            width: 150px;
            height: 150px;
            border: 2px solid var(--sage);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }
        
        .circle-2 {
            bottom: 30%;
            left: 8%;
            width: 100px;
            height: 100px;
            border: 2px solid var(--clay);
            border-radius: 50%;
            animation: pulse 5s ease-in-out infinite 1s;
        }
        
        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: scale(1.1);
                opacity: 0.5;
            }
        }
	

