/* Pages Specific Styles */

/* Page Hero */
.page-hero {
    background: var(--gradient-bg);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern.png') repeat;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--secondary-color);
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    color: var(--white);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: #f5f5f5;
}

.content-section {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.content-section h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 25px 0 15px;
}

.content-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.warning-box h2 {
    color: #856404;
    margin-bottom: 15px;
}

.warning-box p {
    color: #856404;
    font-size: 18px;
    margin: 0;
}

/* Commitment Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.commitment-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.commitment-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Assessment Checklist */
.assessment-checklist {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.assessment-checklist ul {
    list-style: none;
    padding: 0;
}

.assessment-checklist li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    padding-left: 30px;
    position: relative;
}

.assessment-checklist li::before {
    content: '❓';
    position: absolute;
    left: 0;
}

.warning-text {
    color: #dc3545;
    font-weight: bold;
    margin-top: 20px;
    padding: 15px;
    background: #f8d7da;
    border-radius: 5px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tool-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.tool-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.tool-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.tool-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px dashed #e0e0e0;
}

.tool-card li:last-child {
    border-bottom: none;
}

/* Support Resources */
.support-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    background: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #b8daff;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    padding: 10px 0;
    border-bottom: 1px dashed #b8daff;
}

.resource-card li:last-child {
    border-bottom: none;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tip-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.tip-item h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.tip-item ul {
    list-style: none;
    padding: 0;
}

.tip-item li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px dashed #e0e0e0;
}

.tip-item li:last-child {
    border-bottom: none;
}

.tip-item li::before {
    position: absolute;
    left: 0;
}

.tip-item:first-child li::before {
    content: '✓';
    color: #28a745;
}

.tip-item:last-child li::before {
    content: '✗';
    color: #dc3545;
}

/* Youth Protection */
.youth-protection {
    background: #fff3cd;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ffc107;
    margin-top: 20px;
}

.youth-protection > p:first-child {
    font-size: 20px;
    color: #856404;
    margin-bottom: 20px;
    font-weight: bold;
}

.parental-controls {
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Contact Support */
.contact-support {
    background: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-method {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.confidential-note {
    text-align: center;
    font-style: italic;
    color: #666;
    padding: 15px;
    background: white;
    border-radius: 5px;
    margin-top: 20px;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.age-badge,
.responsible-badge {
    height: 40px;
    width: auto;
}

/* Transparency Notice */
.transparency-notice {
    background: #fef8e7;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.transparency-notice h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.transparency-notice p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Mission Goals */
.mission-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.goal-item {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.goal-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Partnership Section */
.partnership-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.partner-benefits,
.affiliate-benefits {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.partner-benefits h3,
.affiliate-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.partner-benefits ul,
.affiliate-benefits ul {
    list-style: none;
    padding: 0;
}

.partner-benefits li,
.affiliate-benefits li {
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
}

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.standard-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.standard-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.standard-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

/* Legal Info */
.legal-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.legal-info h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.legal-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Contact Details */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-item {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.response-time {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .commitment-grid,
    .tools-grid,
    .support-resources,
    .tips-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
}