/* Legal Pages Styling - SK Brand Tech Theme */

/* Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 50px 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.policy-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.policy-hero p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Container */
.policy-container {
    max-width: 1200px;
    margin: -40px auto 80px;
    padding: 0 50px;
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 50px;
}

/* Navigation Sidebar */
.policy-nav {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid #e0e7ff;
}

.policy-nav h3 {
    font-size: 18px;
    color: #667eea;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
}

.policy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-nav li {
    margin-bottom: 8px;
}

.policy-nav a {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
}

.policy-nav a:hover {
    background: white;
    color: #667eea;
    transform: translateX(5px);
}

.policy-nav a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Typography */
.policy-container h2 {
    font-size: 32px;
    color: #667eea;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f0f0;
    position: relative;
}

.policy-container h2::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.policy-container h2:first-of-type {
    margin-top: 0;
}

.policy-container h3 {
    font-size: 22px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 4px solid #667eea;
}

.policy-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.policy-container a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.policy-container a:hover {
    border-bottom-color: #667eea;
}

.policy-container ul,
.policy-container ol {
    margin: 20px 0;
    padding-left: 40px;
    color: #555;
    line-height: 1.8;
}

.policy-container li {
    margin-bottom: 12px;
}

.policy-container strong {
    color: #333;
    font-weight: 600;
}

/* Meta Information */
.policy-meta {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    border: 2px solid #e0e7ff;
}

.policy-meta p {
    margin-bottom: 10px;
    color: #555;
}

.policy-meta p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.policy-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.policy-contact h3 {
    color: white;
    border: none;
    padding: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.policy-contact p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.policy-contact a {
    color: white;
    border-bottom-color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.policy-contact a:hover {
    border-bottom-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-hero {
        padding: 120px 20px 60px;
    }
    
    .policy-hero h1 {
        font-size: 36px;
    }
    
    .policy-container {
        padding: 30px 20px;
        margin-top: -30px;
    }
    
    .policy-container h2 {
        font-size: 26px;
    }
    
    .policy-container h3 {
        font-size: 20px;
    }
}
