* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0c75c6f1; 
    color: #f0f0f0; 
    line-height: 1.6;
}

nav {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav a:hover {
    color: #ffd700;
}


main {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto;
    background-color: rgb(16, 64, 169); 
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


h2 {
    color: #ffd700; 
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}


article {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    gap: 25px;
    border-left: 5px solid #ffd700;
}

article img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
}

article h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    flex: 1 1 300px; 
}

article p {
    flex: 1 1 100%; 
    color: #e0e0e0;
}


section > h3 {
    color: #ffd700;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

ol {
    margin: 20px 0 20px 40px;
}

ol li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #fff;
}


@media (max-width: 768px) {
    article {
        flex-direction: column;
        text-align: center;
    }
    
    article img {
        margin: 0 auto;
    }
    
    nav a {
        display: inline-block;
        margin: 5px 10px;
    }
}

form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3); 
    max-width: 600px;
    margin: 20px auto;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ffd700; 
    text-transform: uppercase;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #0c75c6;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-family: inherit;
    font-size: 1rem;
    color: #222;
}


input:focus, 
textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

textarea {
    height: 120px;
    resize: vertical; 
}

button[type="submit"] {
    background-color: #ffd700;
    color: #1040a9;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


h2 + p {
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
    color: #e0e0e0;
}