a {
    color: #8A2BE2;
    text-decoration: underline;
}
.privacy-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(224, 192, 128, 0.3);
}

.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(224, 192, 128, 0.3);
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #e0c080;
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h2 {
    color: #e0c080;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    color: #333;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e0c080 0%, #d4af37 100%);
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-link:hover {
    box-shadow: 0 5px 15px rgba(224, 192, 128, 0.3);
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
}
.terms-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(224, 192, 128, 0.3);
}

.terms-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(224, 192, 128, 0.3);
}

.terms-header h1 {
    font-size: 2.5rem;
    color: #e0c080;
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section h2 {
    color: #e0c080;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    color: #333;
}

.highlight-box {
    background: rgba(224, 192, 128, 0.1);
    border-left: 3px solid #e0c080;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e0c080 0%, #d4af37 100%);
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-link:hover {
    box-shadow: 0 5px 15px rgba(224, 192, 128, 0.3);
}

@media (max-width: 768px) {
    .terms-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .terms-header h1 {
        font-size: 2rem;
    }
}

/* Override h1 and h3 colors to be black */
.terms-header h1 {
    color: #000 !important;
}

/* FAQ Specific Styles */
.faq-item {
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.faq-question .toggle-icon {
    font-size: 1.2rem;
    color: #8A2BE2;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #555;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    color: #8A2BE2;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.faq-highlight-box {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(138, 43, 226, 0.05));
    border-left: 4px solid #8A2BE2;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.search-box {
    margin-bottom: 30px;
    text-align: center;
}

.search-box input {
    width: 100%;
    max-width: 500px;
    padding: 15px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #8A2BE2;
}

.contact-cta {
    background: linear-gradient(135deg, #8A2BE2, #6A1B9A);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.contact-cta h3 {
    color: #fff !important;
    margin-bottom: 15px;
}

.contact-cta a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

/* Override h1 and h3 colors to be black */
.faq-category h3 {
    color: #000 !important;
}