* { margin: 0; padding: 0; box-sizing: border-box; font-size: 1.0rem; }

body { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); min-height: 100svh; display: flex; align-items: center; justify-content: center; color: #333; }

.container { background: white; padding: 60px 40px; border-radius: 5px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); text-align: center; max-width: 600px; width: 90%; position: relative; overflow: hidden; }
.container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; }

.icon-wrapper { margin-bottom: 30px; position: relative; }
.icon-wrapper img { width: 95%; clip-path: inset(10% 30% 10% 30%); transform: scale(2.8); transform-origin: center; }

h1 { font-size: 2.5rem; color: #1e293b; margin-bottom: 20px; font-weight: 700; }

.subtitle { font-size: 1.5rem; color: #64748b; margin-bottom: 30px; padding-top: 30px; font-weight: bold; line-height: 1.6; }

.progress-bar {  width: 100%; height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden; margin-bottom: 40px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #19af4b 0%, #19af4b 100%); width: 100%; animation: progress 3s ease-in-out infinite; }

@keyframes progress 
{
    0% { transform: translateX(-100%); } 
    100% { transform: translateX(100%); } 
}

.info-box { background: #f8fafc; border-left: 4px solid #000000; border-right: 4px solid #000000; padding: 20px; margin-bottom: 30px; text-align: left; border-radius: 8px; }
.info-box p { color: #475569; font-size: 0.95rem; line-height: 1.6; }

.contact-info { margin-top: 40px; padding-top: 30px; border-top: 1px solid #e2e8f0; }
.contact-info h3 { color: #1e293b; font-size: 1.1rem; margin-bottom: 15px; }
.contact-info p { color: #64748b; font-size: 0.9rem; margin-bottom: 8px; }
.contact-info a { color: #3b82f6; text-decoration: none; transition: color 0.3s ease; }
.contact-info a:hover { color: #2563eb; text-decoration: underline; }

@media (max-width: 768px) 
{
    .container { padding: 40px 25px; width: 95%; }
    h1 { font-size: 2rem; }
    .subtitle { font-size: 1.5rem; }
    .gear { width: 60px; height: 60px; }
    .info-box { padding: 15px; }
    .info-box p { font-size: 0.9rem; }
}

@media (max-width: 480px) 
{ 
    .container { padding: 30px 20px; }
    h1 { font-size: 1.75rem; }
    .subtitle { font-size: 1.5rem; margin-bottom: 30px; }
    .contact-info h3 { font-size: 1rem; }
    .contact-info p { font-size: 0.85rem; }
}