/* Privacy Policy Page Styles */

/* Hero Section */
.dk-privacy-hero-wrapper {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.dk-privacy-hero-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #f8f9fa, transparent);
}

.dk-privacy-hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.dk-privacy-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dk-privacy-hero-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Content Styles */
.dk-privacy-section {
    padding: 60px 20px;
    background: white;
}

.dk-privacy-section:nth-child(even) {
    background: #f8f9fa;
}

.dk-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Content Card Styles */
.dk-privacy-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.dk-privacy-subtitle {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.dk-privacy-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* List Styles */
.dk-privacy-list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 25px;
}

.dk-privacy-list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.dk-privacy-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 50%;
}

/* Highlight Box */
.dk-privacy-highlight {
    background: #f8f9fa;
    border-left: 4px solid #1a2a6c;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.dk-privacy-highlight-title {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.dk-privacy-highlight-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Data Collection Grid */
.dk-privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.dk-privacy-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dk-privacy-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    fill: #1a2a6c;
}

.dk-privacy-card-title {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.dk-privacy-card-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dk-privacy-section {
        padding: 40px 20px;
    }
    
    .dk-privacy-content {
        padding: 30px 20px;
    }
    
    .dk-privacy-subtitle {
        font-size: 1.3rem;
    }
    
    .dk-privacy-text,
    .dk-privacy-list-item {
        font-size: 1rem;
    }
    
    .dk-privacy-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .dk-privacy-hero-wrapper {
        min-height: 30vh;
        padding: 40px 15px;
    }
    
    .dk-privacy-content {
        padding: 20px 15px;
    }
    
    .dk-privacy-highlight {
        padding: 15px;
        margin: 20px 0;
    }
    
    .dk-privacy-card-title {
        font-size: 1.2rem;
    }
} 