* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #660099 100%);
    min-height: 100vh;
    color: #fff;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.policy-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 30px;
}

.policy-header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.last-updated {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.policy-nav a {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-nav a:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4) 0%, rgba(255, 165, 0, 0.4) 100%);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.policy-content {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.policy-content section {
    margin-bottom: 40px;
}

.policy-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.policy-content h3 {
    font-size: 20px;
    color: #FFA500;
    margin-bottom: 15px;
    margin-top: 20px;
}

.policy-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.policy-content ul,
.policy-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content ul li,
.policy-content ol li {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 16px;
}

.policy-content ul li strong,
.policy-content ol li strong {
    color: #FFD700;
}

.policy-content address {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    font-style: normal;
    line-height: 1.8;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.tool-card h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

.tool-card p {
    font-size: 14px;
    color: #ccc;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.resource {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.resource h3 {
    color: #4CAF50;
    font-size: 18px;
    margin-bottom: 10px;
}

.resource p {
    margin-bottom: 8px;
    font-size: 14px;
}

.resource a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource a:hover {
    color: #FFA500;
    text-decoration: underline;
}

.contact-section {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.policy-footer {
    text-align: center;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.policy-footer p {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 10px;
    }
    
    .policy-header h1 {
        font-size: 36px;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-content h2 {
        font-size: 24px;
    }
    
    .policy-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-nav a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .tool-grid,
    .help-resources {
        grid-template-columns: 1fr;
    }
}