/* Privacy Page Specific Styles */

/* Privacy Hero */
.privacy-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.privacy-hero-title {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Privacy Overview */
.privacy-overview {
    background: #0a0a0a;
    padding: 6rem 0;
}

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

.privacy-overview-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.privacy-overview-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.privacy-highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.privacy-highlight:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.privacy-highlight h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.privacy-highlight p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Information Collection */
.information-collection {
    background: #0a0a0a;
    padding: 6rem 0;
}

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

.information-collection-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.collection-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.collection-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.collection-type h3 {
    margin-bottom: 1.5rem;
    color: #667eea;
    text-align: center;
}

.collection-list {
    list-style: none;
}

.collection-list li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.collection-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Information Use */
.information-use {
    background: #0a0a0a;
    padding: 6rem 0;
}

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

.information-use-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.information-use-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.use-purposes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.use-purpose {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.use-purpose:hover {
    transform: translateY(-5px);
}

.purpose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.use-purpose h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.use-purpose p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Data Sharing */
.data-sharing {
    background: #0a0a0a;
    padding: 6rem 0;
}

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

.data-sharing-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.data-sharing-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.sharing-scenarios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.sharing-scenario {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sharing-scenario h3 {
    margin-bottom: 1.5rem;
    color: #667eea;
}

.sharing-list {
    list-style: none;
}

.sharing-list li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.sharing-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Data Security */
.data-security {
    background: #0a0a0a;
    padding: 6rem 0;
}

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

.data-security-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.data-security-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.security-measure {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.security-measure:hover {
    transform: translateY(-5px);
}

.measure-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.security-measure h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.security-measure p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* User Rights */
.user-rights {
    background: #0a0a0a;
    padding: 6rem 0;
}

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

.user-rights-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.user-rights-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.rights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.right-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.right-item:hover {
    transform: translateY(-3px);
}

.right-item h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.right-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Cookies Section */
.cookies-section {
    background: #0a0a0a;
    padding: 6rem 0;
}

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

.cookies-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cookies-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.cookie-type h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.cookie-type p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.cookie-controls {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.cookie-controls h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.cookie-controls p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.cookie-list {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
    text-align: left;
}

.cookie-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.cookie-list li strong {
    color: #667eea;
}

.cookie-list li em {
    font-style: italic;
    opacity: 0.8;
}

/* Children's Privacy */
.children-privacy {
    background: #0a0a0a;
    padding: 6rem 0;
}

.children-privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.children-privacy-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.children-privacy-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.children-policy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.policy-point {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.policy-point h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.policy-point p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* International Transfers */
.international-transfers {
    background: #0a0a0a;
    padding: 6rem 0;
}

.international-transfers-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.international-transfers-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.international-transfers-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.transfer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.transfer-detail {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.transfer-detail h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.transfer-detail p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Policy Updates */
.policy-updates {
    background: #0a0a0a;
    padding: 6rem 0;
}

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

.policy-updates-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.policy-updates-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.update-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.update-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.update-step h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.update-step p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Privacy Contact */
.privacy-contact {
    background: #0a0a0a;
    padding: 6rem 0;
    text-align: center;
}

.privacy-contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-contact-title {
    margin-bottom: 1.5rem;
}

.privacy-contact-description {
    margin-bottom: 4rem;
    opacity: 0.8;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-option h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.contact-option p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

.privacy-cta {
    margin-top: 2rem;
}

/* Last Updated */
.last-updated {
    background: #0a0a0a;
    padding: 3rem 0;
    text-align: center;
}

.last-updated-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.last-updated-text {
    margin: 0.5rem 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-highlights,
    .collection-types,
    .use-purposes,
    .sharing-scenarios,
    .security-measures,
    .rights-list,
    .cookie-types,
    .children-policy,
    .transfer-info,
    .update-process {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-list {
        text-align: left;
        padding-left: 1rem;
    }
    
    .privacy-hero {
        padding: 4rem 0 3rem;
    }
    
    .privacy-hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-highlight,
    .collection-type,
    .use-purpose,
    .sharing-scenario,
    .security-measure,
    .right-item,
    .cookie-type,
    .policy-point,
    .transfer-detail,
    .update-step,
    .contact-option {
        padding: 1.5rem;
    }
    
    .privacy-hero-title {
        font-size: 2rem;
    }
    
    .privacy-hero-description {
        font-size: 1rem;
    }
}
