/* Privacy Section */
.privacy-section {
    background: #0a0e27;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

/* Background pattern */
.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(53, 67, 240, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Privacy Text Content */
.privacy-text {
    color: #ffffff;
}

.privacy-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #3543F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

/* Privacy Features Grid */
.privacy-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.privacy-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.privacy-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: rgba(53, 67, 240, 0.3);
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glowing background effect */
.feature-icon-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(53, 67, 240, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

.feature-svg-icon {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 2;
    stroke: #3543F0;
    filter: drop-shadow(0 0 15px rgba(53, 67, 240, 0.6));
    animation: float 4s ease-in-out infinite;
}

/* Different animation delays for each card */
.privacy-feature-card:nth-child(1) .feature-icon-container::before,
.privacy-feature-card:nth-child(1) .feature-svg-icon {
    animation-delay: 0s;
}

.privacy-feature-card:nth-child(2) .feature-icon-container::before,
.privacy-feature-card:nth-child(2) .feature-svg-icon {
    animation-delay: 1.3s;
}

.privacy-feature-card:nth-child(3) .feature-icon-container::before,
.privacy-feature-card:nth-child(3) .feature-svg-icon {
    animation-delay: 2.6s;
}

.privacy-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.privacy-feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

/* Bottom Message */
.privacy-bottom-message {
    text-align: center;
    padding: 1.5rem;
    background: rgba(53, 67, 240, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(53, 67, 240, 0.2);
}

.privacy-bottom-message p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.privacy-bottom-message strong {
    color: #3543F0;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .privacy-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 80px 20px;
    }
    
    .privacy-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .privacy-feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .feature-svg-icon {
        width: 40px;
        height: 40px;
    }
    
    .privacy-feature-card h4 {
        font-size: 1.125rem;
    }
    
    .privacy-feature-card p {
        font-size: 0.875rem;
    }
    
    .privacy-bottom-message {
        padding: 1.25rem;
    }
    
    .privacy-bottom-message p {
        font-size: 1rem;
    }
    
    .privacy-footer {
        font-size: 1.125rem;
    }
}