.static-content-page {
    line-height: 1.8;
    color: #333;
    background: #F9FAFB;
    padding-bottom: 60px;
}

.static-content-page .header {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.static-content-page .header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.static-content-page .header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.static-content-page .container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.static-content-page .back-link {
    display: inline-block;
    color: #16A34A;
    text-decoration: none;
    margin-bottom: 30px;
    font-weight: 600;
}

.static-content-page .back-link:hover {
    text-decoration: underline;
}

.static-content-page h2 {
    color: #16A34A;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #DCFCE7;
}

.static-content-page h3 {
    color: #1F2937;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.static-content-page p {
    margin-bottom: 15px;
    color: #4B5563;
}

.static-content-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.static-content-page li {
    margin-bottom: 10px;
    color: #4B5563;
}

.static-content-page .highlight {
    background: #DCFCE7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #16A34A;
}

.static-content-page .last-updated {
    color: #6B7280;
    font-style: italic;
    margin-bottom: 30px;
}

.static-content-page .delete-request-btn {
    display: inline-block;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.static-content-page .delete-request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.4);
    text-decoration: none;
}

.static-content-page .contact-info {
    background: #F3F4F6;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 600px) {
    .static-content-page .container {
        margin: 30px 20px;
        padding: 25px;
    }

    .static-content-page .header h1 {
        font-size: 2rem;
    }

    .static-content-page h2 {
        font-size: 1.5rem;
    }
}

body.error-page {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.error-page .error-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.error-page .error-icon {
    font-size: 6rem;
    margin-bottom: 20px;
}

.error-page h1 {
    color: #1F2937;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.error-page .error-code {
    color: #16A34A;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.error-page p {
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.error-page .btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-page .btn {
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 600;
}

.error-page .btn-primary {
    background: #16A34A;
    color: white;
}

.error-page .btn-primary:hover {
    background: #15803D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}

.error-page .btn-secondary {
    background: #F3F4F6;
    color: #1F2937;
}

.error-page .btn-secondary:hover {
    background: #E5E7EB;
    transform: translateY(-2px);
}

.error-page .error-details {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #E5E7EB;
}

.error-page .error-details p {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-bottom: 10px;
}

.error-page .request-id {
    font-family: 'Courier New', monospace;
    background: #F3F4F6;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.85rem;
    color: #4B5563;
}

.error-page .support-info {
    margin-top: 30px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 8px;
    border-left: 4px solid #16A34A;
}

.error-page .support-info h3 {
    color: #1F2937;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.error-page .support-info p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.error-page .support-info a {
    color: #16A34A;
    text-decoration: none;
    font-weight: 600;
}

.error-page .support-info a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .error-page .error-container {
        padding: 40px 20px;
    }

    .error-page h1 {
        font-size: 2rem;
    }

    .error-page .error-icon {
        font-size: 4rem;
    }

    .error-page .btn-group {
        flex-direction: column;
    }

    .error-page .btn {
        width: 100%;
    }
}
