/* Terms Page Styles */

/* Hero Section */
.dk-terms-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-terms-hero-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #f8f9fa, transparent);
}

.dk-terms-hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.dk-terms-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-terms-hero-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Styles */
.dk-terms-section {
    padding: 60px 20px;
    background: white;
}

.dk-terms-section:nth-child(even) {
    background: #f8f9fa;
}

.dk-container {
    max-width: 1000px;
    margin: 0 auto;
}

.dk-section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.dk-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 2px;
}

/* Terms Content */
.dk-terms-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.dk-terms-subtitle {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.dk-terms-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.dk-terms-list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 25px;
}

.dk-terms-list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.dk-terms-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 50%;
}

.dk-terms-highlight {
    background: #f8f9fa;
    border-left: 4px solid #1a2a6c;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.dk-terms-highlight-title {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.dk-terms-highlight-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dk-terms-section {
        padding: 40px 20px;
    }
    
    .dk-terms-content {
        padding: 30px 20px;
    }
    
    .dk-terms-subtitle {
        font-size: 1.3rem;
    }
    
    .dk-terms-text,
    .dk-terms-list-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .dk-terms-hero-wrapper {
        min-height: 30vh;
        padding: 40px 15px;
    }
    
    .dk-terms-content {
        padding: 20px 15px;
    }
    
    .dk-terms-highlight {
        padding: 15px;
        margin: 20px 0;
    }
} 