   .privacy-container {
            /* max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px; */
            /* background-color: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1); */
        
            /* margin-top: 20px; */
            margin-bottom: 20px;
        }
        
        .privacy-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            padding-bottom: 20px;
            padding-top: 100px;
            /* border-bottom: 3px solid #e9ecef; */
        }
        
        .intro-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #555;
            line-height: 1.7;
        }
        
        .policy-section {
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            overflow: hidden;
        }
        
        .section-header {
            background-color: #f8f9fa;
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            font-size: 1.1rem;
            color: #495057;
            transition: background-color 0.3s ease;
        }
        
        .section-header:hover {
            background-color: #e9ecef;
        }
        
        .section-header.active {
            background-color: #cce7ff;
            color: #0056b3;
        }
        
        .section-content {
            padding: 20px;
            background-color: white;
            display: none;
        }
        
        .section-content.show {
            display: block;
        }
        
        .section-content ul {
            margin: 0;
            padding-left: 20px;
        }
        
        .section-content li {
            margin-bottom: 10px;
            color: #555;
        }

        
        .contact-info {
            margin-top: 40px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 6px;
            font-size: 1rem;
            color: #555;
        }
        
        .contact-link {
            color: #0056b3;
            text-decoration: none;
            font-weight: 500;
        }
        
        .contact-link:hover {
            text-decoration: underline;
        }