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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

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

header {
    background: linear-gradient(135deg, #003d82 0%, #0056b3 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.95;
}

main {
    padding: 40px 20px;
}

section {
    background: white;
    margin: 30px 0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.3em;
    color: #555;
    text-align: center;
    line-height: 1.8;
}

.features h2 {
    color: #003d82;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    text-align: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,61,130,0.2);
}



.feature-card h3 {
    color: #003d82;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.feature-card p {
    color: #666;
}

.states h2 {
    color: #003d82;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.states-list {
    display: grid;
    gap: 20px;
}

.state-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid;
}

.state-item.valid {
    background: #e8f5e9;
    border-color: #4caf50;
}

.state-item.umh {
    background: #ffebee;
    border-color: #979595;
}

.state-item.danger {
    background: #ffebee;
    border-color: #f44336;
}

.state-item.neutral {
    background: #f5f5f5;
    border-color: #9e9e9e;
}

.state-item.error {
    background: #fff3e0;
    border-color: #ff9800;
}

.state-item.umh {
    background: #fff3e0;
    border-color: #ff9800;
}

.state-item .badge {
    font-size: 2em;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
}

.state-item .badge-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.state-item.valid .badge {
    color: #4caf50;
}

.state-item.danger .badge {
    color: #f44336;
}

.state-item.neutral .badge {
    color: #9e9e9e;
}

.state-item.umh .badge {
    color: #f8d49d;
}

.state-item strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.state-item p {
    color: #666;
}

.cta {
    text-align: center;
    background: linear-gradient(135deg, #003d82 0%, #0056b3 100%);
    color: white;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.step {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.step h3 {
    color: #003d82;
    margin-bottom: 15px;
}

.step img {
    width: 50%;
    margin: 0 auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #003d82;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.innovation {
    text-align: center;
}

.innovation-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #003d82 0%, #0056b3 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge-number {
    font-size: 2.5em;
    font-weight: bold;
}

.badge-text {
    font-size: 1.2em;
}

.innovation p {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1em;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    section {
        padding: 20px;
    }
    
    .innovation-badge {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}
