body {
    color: white;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
    background: url("assets/6910723.jpg") no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    
    background: url("assets/6910723.jpg") no-repeat center / cover;
    
    
    filter: blur(85px); 
    

    background-color: rgba(0, 0, 0, 0.4); 
    background-blend-mode: darken;
    

    transform: scale(1.1);
}
h1 {
    color: rgb(255, 60, 0);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}


header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4); 
}

main {
    max-width: 900px;
    margin: 40px auto;
    display: flex; 
    gap: 50px;
    padding: 20px;
}

section {
    flex: 1;
    min-width: 300px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid rgb(255, 60, 0); 
    border-radius: 0 10px 10px 0;
    transition: transform 0.3s ease;
}

ul li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}


form {
    display: flex;
    flex-direction: column; 
    background: rgba(255, 255, 255, 0.95); 
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

form label {
    color: #333; 
    text-shadow: none; 
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 10px;
}


input, select, textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: rgb(255, 60, 0); 
}

textarea {
    height: 80px;
    resize: none;
}


button {
    margin-top: 20px;
    padding: 15px;
    background-color: rgb(255, 60, 0);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: rgb(220, 50, 0);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(2px);

}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    opacity: 0.8;
}