#privacy-page.content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#privacy-page h1 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

#privacy-page .section-title {
    font-size: 1.6em;
    color: #2c3e50;
    margin: 35px 0 20px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

#privacy-page .section-title::before {
    content: '';
    width: 5px;
    height: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

#privacy-page .description-text {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05em;
}

#privacy-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

#privacy-page ul {
    margin: 15px 0 15px 30px;
    list-style-type: disc;
}

#privacy-page li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

#privacy-page a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

#privacy-page a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Toggle Box */
#privacy-page .toggle-box {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 1rem;
    margin: 15px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

#privacy-page .toggle-box:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

#privacy-page .toggle-header {
    padding: 18px 22px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05em;
    transition: all 0.3s ease;
    user-select: none;
}

#privacy-page .toggle-header:hover {
    background: #f0f1f5;
    color: #667eea;
}

#privacy-page .toggle-box.active .toggle-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

#privacy-page .toggle-symbol {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: currentColor;
}

#privacy-page .toggle-box.active .toggle-symbol {
    transform: rotate(180deg);
}

#privacy-page .toggle-content {
    display: none;
    padding: 22px;
    background: white;
    color: #555;
    line-height: 1.8;
    font-size: 1em;
    border-top: 2px solid #e0e0e0;
    animation: slideDown 0.3s ease;
}

#privacy-page .toggle-box.active .toggle-content {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#privacy-page .toggle-content p {
    margin-bottom: 15px;
}

#privacy-page .toggle-content ul {
    margin: 15px 0 15px 25px;
    list-style-type: disc;
}

#privacy-page .toggle-content li {
    margin-bottom: 10px;
}

#privacy-page .info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-left: 5px solid #667eea;
    padding: 20px;
    border-radius: 1rem;
    margin: 20px 0;
    color: #333;
}

#privacy-page .info-box strong {
    color: #667eea;
}

#privacy-page .info-box ul {
    margin: 15px 0 0 25px;
}

#privacy-page .contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 1rem;
    margin: 20px 0;
    border: 2px solid #e0e0e0;
}

#privacy-page .contact-info p {
    margin: 8px 0;
    color: #555;
}

#privacy-page .contact-info strong {
    color: #2c3e50;
    display: block;
    margin-top: 12px;
}

#privacy-page .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

#privacy-page .grid-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 1rem;
    border: 2px solid #e0e0e0;
}

#privacy-page .grid-item strong {
    color: #667eea;
    display: block;
    margin-bottom: 12px;
    font-size: 1.1em;
}

#privacy-page .grid-item ul {
    margin: 10px 0 0 20px;
}

#privacy-page .grid-item li {
    margin-bottom: 8px;
}

#privacy-page .highlight-text {
    background: linear-gradient(120deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

@media (max-width: 768px) {
    #privacy-page.content {
        padding: 20px 15px;
    }

    #privacy-page h1 {
        font-size: 1.6em;
    }

    #privacy-page .section-title {
        font-size: 1.3em;
        margin: 25px 0 15px 0;
    }

    #privacy-page .toggle-header {
        padding: 15px;
        font-size: 1em;
    }

    #privacy-page .toggle-content {
        padding: 15px;
    }

    #privacy-page .grid-2 {
        grid-template-columns: 1fr;
    }
}