/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.nav-brand a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.nav-brand i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: #ffd700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Security Section */
.security {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.security h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.security-content {
    margin-bottom: 4rem;
}

.security-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.security-item i {
    font-size: 2rem;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
    color: #ffd700;
}

.security-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.security-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.security-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat h3 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Password Recovery Section */
.password-recovery {
    padding: 80px 0;
    background: white;
}

.password-recovery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.info-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Account Deletion Page Styles */
.account-deletion-page {
    padding-top: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.page-header h1 i {
    color: #e74c3c;
    margin-right: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Warning Section */
.warning-section {
    margin-bottom: 3rem;
}

.warning-box {
    background: linear-gradient(135deg, #ff9a56, #ffad56);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255,154,86,0.3);
}

.warning-box i {
    font-size: 2rem;
    margin-right: 1rem;
    color: #fff3cd;
}

.warning-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Deletion Steps */
.deletion-steps {
    margin-bottom: 4rem;
}

.deletion-steps h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.steps-container {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Password Reset Info */
.password-reset-info {
    margin-bottom: 4rem;
}

.password-reset-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-list {
    list-style: none;
    margin-top: 1rem;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Deletion Info */
.deletion-info {
    margin-bottom: 4rem;
}

.deletion-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.deletion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.deletion-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #e74c3c;
}

.deletion-item i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.deletion-item h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.deletion-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Before Deletion */
.before-deletion {
    margin-bottom: 4rem;
}

.before-deletion h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.checklist {
    display: grid;
    gap: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ffc107;
}

.checklist-item i {
    font-size: 2rem;
    color: #ffc107;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.checklist-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.checklist-item p {
    color: #666;
    line-height: 1.6;
}

/* Alternatives */
.alternatives {
    margin-bottom: 4rem;
}

.alternatives h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.alternatives > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.alternative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.alternative-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #28a745;
    transition: transform 0.3s ease;
}

.alternative-card:hover {
    transform: translateY(-5px);
}

.alternative-card i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.alternative-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.alternative-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Support Section */
.support-section {
    margin-bottom: 4rem;
}

.support-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}

.support-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.support-card h2 i {
    margin-right: 1rem;
    color: #ffd700;
}

.support-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(102,126,234,0.98) 0%, rgba(118,75,162,0.98) 100%);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        padding-top: 3rem;
        transition: left 0.3s ease;
        transform: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 80%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .nav-link:hover {
        background: rgba(255,255,255,0.2);
        transform: none;
    }
    

    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .security-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .deletion-grid {
        grid-template-columns: 1fr;
    }
    
    .alternative-grid {
        grid-template-columns: 1fr;
    }
    
    .support-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .checklist-item {
        flex-direction: column;
        text-align: center;
    }
    
    .checklist-item i {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features, .security, .cta {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .support-card {
        padding: 2rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-page {
    padding-top: 2rem;
    background: #f8f9fa;
}

.privacy-section {
    background: white;
    margin-bottom: 2rem;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.privacy-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.last-updated {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
}

/* Commitment Box */
.commitment-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.commitment-item {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(240,147,251,0.3);
}

.commitment-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.commitment-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Info Categories */
.info-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.info-category h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-category h3 i {
    color: #667eea;
}

.privacy-list {
    list-style: none;
    padding: 0;
}

.privacy-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.highlight-box {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-box i {
    font-size: 2rem;
    color: #ffd700;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.usage-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.usage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.usage-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.usage-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.usage-card ul {
    list-style: none;
    padding: 0;
}

.usage-card ul li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.usage-card ul li:before {
    content: "•";
    color: #667eea;
    position: absolute;
    left: 0;
}

/* Protection Timeline */
.protection-timeline {
    position: relative;
    padding-left: 2rem;
}

.protection-timeline:before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-icon {
    background: #667eea;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Sharing Policy */
.sharing-policy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.no-sharing-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(79,172,254,0.3);
}

.no-sharing-box i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.limited-sharing-box {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(250,112,154,0.3);
}

.limited-sharing-box i {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.sharing-policy ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.sharing-policy ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.no-sharing-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.limited-sharing-box ul li:before {
    content: "!";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.right-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.right-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.right-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.right-card h3 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.right-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Retention Info */
.retention-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.retention-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.retention-item h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.retention-item h3 i {
    color: #28a745;
}

/* Children's Policy */
.children-policy {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2rem;
    border-radius: 15px;
}

.children-policy i {
    font-size: 4rem;
    color: #ff6b6b;
}

.children-policy h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Transfer Info */
.transfer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.transfer-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.transfer-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-top: 0.5rem;
}

/* Contact Privacy */
.contact-privacy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(102,126,234,0.3);
}

.contact-card i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card ul {
    list-style: none;
    padding: 0;
}

.contact-card ul li {
    padding: 0.3rem 0;
}

/* Updates Info */
.updates-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.update-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #17a2b8;
}

.update-card i {
    font-size: 2.5rem;
    color: #17a2b8;
    margin-bottom: 1rem;
}

.update-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.update-card ul {
    list-style: none;
    padding: 0;
}

.update-card ul li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1rem;
}

.update-card ul li:before {
    content: "•";
    color: #17a2b8;
    position: absolute;
    left: 0;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-section {
        padding: 1.5rem;
    }
    
    .sharing-policy,
    .contact-privacy,
    .updates-info,
    .transfer-info {
        grid-template-columns: 1fr;
    }
    
    .commitment-box,
    .usage-grid,
    .rights-grid,
    .retention-info {
        grid-template-columns: 1fr;
    }
    
    .children-policy {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .protection-timeline {
        padding-left: 0;
    }
    
    .protection-timeline:before {
        display: none;
    }
}