 @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;700&display=swap');

        :root {
            --primary-green: #00ff9b;
            --background-dark: #0d0d0d;
            --text-light: #e0e0e0;
            --text-muted: #b0b0b0;
            --border-green: rgba(0, 255, 155, 0.5);
            --border-light: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--background-dark);
            color: var(--text-light);
            font-family: 'Roboto Mono', monospace;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            width: 100%;
            padding: 25px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-light);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }
        
        /* Main Content */
        main {
            width: 100%;
            padding-top: 80px;
        }

        .protocol-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
            margin-bottom: 150px;
        }
        
        .protocol-section:last-child {
            margin-bottom: 50px;
        }

        .protocol-section:nth-child(even) {
            flex-direction: row-reverse;
        }

        .protocol-content {
            flex: 1;
            max-width: 500px;
        }

        .protocol-content h1 {
            font-size: 42px;
            color: var(--primary-green);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .protocol-content p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 40px;
            color: var(--text-muted);
        }

        .actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .btn {
            padding: 12px 28px;
            border: 1px solid var(--border-green);
            background-color: transparent;
            color: var(--primary-green);
            text-decoration: none;
            font-size: 16px;
            font-family: 'Roboto Mono', monospace;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .btn:hover {
            background-color: rgba(0, 255, 155, 0.1);
        }

        .alternative-link {
            color: var(--primary-green);
            text-decoration: none;
            font-size: 16px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .alternative-link:hover {
            opacity: 1;
        }

        .protocol-graphic {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .protocol-graphic img {
            width: 100%;
            max-width: 450px;
            height: auto;
             padding: 20px;
           
        }

        /* New Sections */
        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 80px;
            color: var(--text-light);
        }

        .section-title.green-highlight {
            color: var(--primary-green);
        }
        
        .section-title.green-highlight span {
             color: var(--text-light);
        }

        /* How it Works Section */
        .how-it-works-section {
            padding: 80px 0;
            text-align: center;
        }

        .steps-container {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .step {
            flex: 1;
            max-width: 320px;
        }

        .step h3 {
            color: var(--primary-green);
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .step p {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.7;
        }

        .visual-flow {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-bottom: 60px;
            padding: 0 5%;
        }

        .visual-flow .icon-placeholder {
            width: 100px;
            height: 60px;
            border: 1px dashed var(--border-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--border-green);
            font-size: 14px;
        }

        /* Privacy Section */
        .privacy-section {
            padding: 80px 0;
        }
        
        .privacy-content-wrapper {
             display: flex;
             justify-content: space-between;
             align-items: center;
             gap: 60px;
        }
        
        .privacy-graphic {
            flex: 1;
        }
        
        .privacy-graphic img {
            width: 100%;
            max-width: 450px;
            height: auto;
            border: 1px dashed var(--border-green);
            padding: 20px;
            background-color: rgba(0, 255, 155, 0.05);
        }
        
        .privacy-text {
            flex: 1;
            max-width: 550px;
        }

        .privacy-text h2 {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .privacy-text p {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.8;
        }

        /* Decentralization Section */
        .decentralization-section {
            padding: 80px 0;
        }
        
        .decentralization-section .subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-muted);
            max-width: 800px;
            margin: -60px auto 80px auto;
            line-height: 1.6;
        }

        .decentralization-section .subtitle span {
            color: var(--primary-green);
        }
        
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .grid-item {
            border: 1px solid var(--border-green);
            padding: 30px 25px;
            position: relative;
            background-color: #121212;
            clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
        }

        .grid-item p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .protocol-section, .protocol-section:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }

            .privacy-content-wrapper {
                 flex-direction: column;
                 text-align: center;
            }

            .actions {
                justify-content: center;
            }

            .protocol-graphic, .privacy-graphic {
                margin-top: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 20px;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
             .protocol-content h1, .section-title, .privacy-text h2 {
                font-size: 32px;
            }
            .protocol-content p {
                font-size: 16px;
            }
            .visual-flow {
                flex-direction: column;
                gap: 20px;
            }
        }
		
		.how-it-works-section .work {
     height: 220px;
    width: 100%;
    margin-bottom: 4rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;  
    background-image: url(tornado_cash_how_to.jpg);
}
/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.faq-question {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    list-style: none; /* Hide the default marker */
    padding: 15px 0;
    position: relative;
    padding-right: 30px; /* Space for the icon */
}

.faq-question::-webkit-details-marker {
    display: none; /* Hide marker for Chrome/Safari */
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item[open] > .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 10px 0 15px 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--primary-green);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Footer Section Styles */
.site-footer {
    width: 100%;
    background-color: #121212; /* A slightly lighter dark shade for contrast */
    padding-top: 60px;
    border-top: 1px solid var(--border-light);
    font-size: 15px;
    margin-top: 100px; /* Add space above the footer */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links h4, .footer-social h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Styles for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        text-align: center;
    }
    
    .footer-about .logo {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

