/* styles.css */
:root {
    --primary-color: #3CB4C4;
    --primary-dark: #2C6770;
    --background: #242628;
    --surface: #2D2F31;
    --text-primary: #eeeeee;
    --text-secondary: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background: linear-gradient(135deg, #1a1c1e 0%, #242628 50%, #2D2F31 100%);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    background: rgba(36, 38, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(60, 180, 196, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.menu-link {
    font-size: 16px;
    text-decoration: none;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.menu-link:hover {
    color: var(--text-primary);
    background: rgba(60, 180, 196, 0.1);
    transform: translateY(-2px);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-link:hover::after {
    width: 80%;
}

/* Main Content */
.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.hero-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.available-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.stores-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.store-link {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.store-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.store-img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Image Section */
.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.logo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    border-radius: 20px;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 50px rgba(60, 180, 196, 0.3));
}

/* Footer */
.footer {
    background: rgba(36, 38, 40, 0.9);
    border-top: 1px solid rgba(60, 180, 196, 0.2);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .badge {
        align-self: center;
    }
    
    .nav-container {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .menu-link {
        font-size: 14px;
        padding: 0.4rem 0.8rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .stores-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .store-img {
        width: 200px;
    }
    
    .logo-container {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content-wrapper {
        gap: 2rem;
    }
    
    .store-img {
        width: 180px;
    }
}

/* Error Page Styles */
.error-page {
    background: linear-gradient(135deg, #1a1c1e 0%, #242628 50%, #2D2F31 100%);
    min-height: 100vh;
    overflow: hidden;
}

.error-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
    position: relative;
}

.error-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
}

.error-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3CB4C4, #2C6770);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bounce 2s infinite;
}

.error-number:nth-child(1) {
    animation-delay: 0s;
}

.error-number:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.error-logo {
    width: 120px;
    height: 120px;
    animation: float 3s ease-in-out infinite;
}

.error-logo img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 10px 20px rgba(60, 180, 196, 0.3));
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.home-button, .support-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.home-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(60, 180, 196, 0.3);
}

.support-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(60, 180, 196, 0.4);
}

.support-button:hover {
    transform: translateY(-3px);
    background: rgba(60, 180, 196, 0.1);
}

.error-tip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(60, 180, 196, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.tip-icon {
    font-size: 1.2rem;
}

.error-stores {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-stores .store-link {
    transition: all 0.3s ease;
}

.error-stores .store-link:hover {
    transform: translateY(-5px) scale(1.05);
}

.error-stores .store-img {
    width: 150px;
    height: auto;
}

/* Background Elements */
.error-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-message {
    position: absolute;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    animation: floatAround 20s infinite linear;
}

.floating-message:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-message:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.floating-message:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Responsive Design for Error Page */
@media (max-width: 768px) {
    .error-animation {
        gap: 1rem;
    }

    .error-number {
        font-size: 5rem;
    }

    .error-logo {
        width: 80px;
        height: 80px;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-message {
        font-size: 1.1rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .home-button, .support-button {
        width: 200px;
        justify-content: center;
    }

    .floating-message {
        font-size: 3rem;
    }

    .error-stores .store-img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .error-animation {
        gap: 0.5rem;
    }

    .error-number {
        font-size: 3.5rem;
    }

    .error-logo {
        width: 60px;
        height: 60px;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .floating-message {
        font-size: 2rem;
    }
}

/* Support Page Styles */
.support-page {
    background: linear-gradient(135deg, #1a1c1e 0%, #242628 50%, #2D2F31 100%);
    min-height: 100vh;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.support-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.support-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(60, 180, 196, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 180, 196, 0.4);
}

.response-info {
    margin-top: 1rem;
}

.info-badge {
    background: rgba(60, 180, 196, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(60, 180, 196, 0.3);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
}

.faq-question span {
    color: var(--text-primary);
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    padding-bottom: 1.5rem;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* Privacy Notice */
.privacy-notice {
    background: linear-gradient(135deg, rgba(60, 180, 196, 0.1), rgba(44, 103, 112, 0.1));
    border: 1px solid rgba(60, 180, 196, 0.3);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.notice-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.notice-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* App Promo */
.app-promo {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-promo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.app-promo p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.support-stores {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-stores .store-link {
    transition: all 0.3s ease;
}

.support-stores .store-link:hover {
    transform: translateY(-5px) scale(1.05);
}

.support-stores .store-img {
    width: 150px;
    height: auto;
}

/* Responsive Design for Support Page */
@media (max-width: 768px) {
    .support-container {
        padding: 1rem;
    }

    .support-header h1 {
        font-size: 2.2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .privacy-notice {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .support-stores .store-img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .support-header h1 {
        font-size: 1.8rem;
    }

    .support-subtitle {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .app-promo {
        padding: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    background: linear-gradient(135deg, #1a1c1e 0%, #242628 50%, #2D2F31 100%);
    min-height: 100vh;
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-bottom: 1px solid rgba(60, 180, 196, 0.3);
    padding-bottom: 2rem;
}

.legal-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

/* Agreement Notice */
.agreement-notice {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.agreement-notice p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Table of Contents */
.toc-section {
    position: sticky;
    top: 2rem;
    align-self: start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(60, 180, 196, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.toc-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.toc-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.toc-links a:hover,
.toc-links a.active {
    color: var(--primary-color);
    background: rgba(60, 180, 196, 0.1);
    border-left-color: var(--primary-color);
}

/* Terms Content */
.terms-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.term-item {
    margin-bottom: 2.5rem;
    scroll-margin-top: 2rem;
}

.term-item:last-child {
    margin-bottom: 0;
}

.term-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(60, 180, 196, 0.3);
}

.term-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.term-item ul {
    color: var(--text-secondary);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.term-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.term-item strong {
    color: var(--text-primary);
}

/* Specific styling for important sections */
#simulated-content,
#disclaimer,
#limitation {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

#simulated-content h3,
#disclaimer h3,
#limitation h3 {
    color: #ff6b6b;
}

.acknowledgment {
    background: rgba(60, 180, 196, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.acknowledgment p {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
    .legal-content {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .legal-container {
        padding: 1rem;
    }

    .legal-header h1 {
        font-size: 2.2rem;
    }

    .legal-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .toc-section {
        position: static;
        order: -1;
    }

    .terms-section {
        padding: 1.5rem;
    }

    .term-item {
        margin-bottom: 2rem;
    }

    .term-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }

    .agreement-notice {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .terms-section {
        padding: 1rem;
    }

    .term-item {
        margin-bottom: 1.5rem;
    }

    #simulated-content,
    #disclaimer,
    #limitation {
        padding: 1rem;
    }

    .acknowledgment {
        padding: 1.5rem;
    }
}
/* Policy Pages Styles */
.policy-page {
    background: linear-gradient(135deg, #1a1c1e 0%, #242628 50%, #2D2F31 100%);
    min-height: 100vh;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.policy-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.policy-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Compliance Notice */
.compliance-notice {
    background: rgba(60, 180, 196, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.shield-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.compliance-notice h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.compliance-notice p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Policy Sections */
.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.policy-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(60, 180, 196, 0.3);
    transform: translateY(-2px);
}

.section-header {
    background: rgba(60, 180, 196, 0.05);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(60, 180, 196, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.section-header h2 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.6rem;
}

.section-content {
    padding: 2rem;
}

.content-item {
    margin-bottom: 2rem;
}

.content-item:last-child {
    margin-bottom: 0;
}

.content-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.content-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-item ul {
    color: var(--text-secondary);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
}

.content-item li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.content-item strong {
    color: var(--text-primary);
}

/* Emergency Contact */
.emergency-contact {
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid rgba(255, 59, 59, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.emergency-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.emergency-content h3 {
    color: #ff3b3b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.emergency-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.emergency-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.emergency-content a:hover {
    color: #2C6770;
}

/* Policy Footer */
.policy-footer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.policy-footer p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-container {
        padding: 1rem;
    }

    .policy-header h1 {
        font-size: 2.2rem;
    }

    .compliance-notice {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .section-header {
        padding: 1rem 1.5rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-content {
        padding: 1.5rem;
    }

    .emergency-contact {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .policy-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }

    .policy-subtitle {
        font-size: 1.1rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .content-item {
        margin-bottom: 1.5rem;
    }
}
/* Additional Styles for Privacy Policy */
.disclaimer-notice {
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid rgba(255, 59, 59, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.disclaimer-notice strong {
    color: #ff3b3b;
}

.third-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
    margin: 1rem 0;
}

.third-party-item {
    background: rgba(60, 180, 196, 0.1);
    border: 1px solid rgba(60, 180, 196, 0.3);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Enhanced warning styles for privacy policy */
.policy-section .content-item p strong {
    color: #ff6b6b;
}

.policy-section .content-item ul li strong {
    color: #ff6b6b;
}

/* Specific styling for critical sections */
.policy-section:nth-child(2) .section-header {
    background: rgba(255, 59, 59, 0.1);
    border-bottom-color: rgba(255, 59, 59, 0.3);
}

.policy-section:nth-child(7) .section-header {
    background: rgba(255, 59, 59, 0.1);
    border-bottom-color: rgba(255, 59, 59, 0.3);
}

.policy-footer {
    background: rgba(255, 59, 59, 0.05);
    border: 2px solid rgba(255, 59, 59, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.policy-footer p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .third-party-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .disclaimer-notice {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .third-party-grid {
        grid-template-columns: 1fr;
    }

    .policy-footer {
        padding: 1.5rem;
    }

    .policy-footer p {
        font-size: 0.9rem;
    }
}
