body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #ede7f6 0%, #fffde7 100%);
    color: #222;
}
header {
    background: linear-gradient(120deg, #512da8 0%, #9575cd 100%);
    color: #fff;
    padding: 3.2rem 0 1.7rem 0;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(81,45,168,0.18);
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(8px) saturate(120%);
    background: linear-gradient(120deg, #512da8 0%, #9575cd 50%, #7e57c2 100%);
    animation: headerGradient 8s ease-in-out infinite alternate;
}

@keyframes headerGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
}

    
h1 {
    color: #fffde7;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin: 0 auto 0.7rem auto;
    padding: 0.3em 0.7em;
    background: linear-gradient(90deg, #ffd54f 30%, #fffde7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 24px #512da899, 0 1px 0 #fff;
    border-radius: 18px;
    display: inline-block;
    filter: drop-shadow(0 2px 12px #9575cd88);
    transition: filter 0.3s;
}
h1:hover {
    filter: drop-shadow(0 6px 24px #ffd54f99);
}
}
}
}
header nav {
    margin-top: 1rem;
}
header nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
header nav a:hover {
    color: #ffd54f;
}
main {
    max-width: 900px;
    margin: 2.5rem auto 4rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
section {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(81,45,168,0.13), 0 2px 8px rgba(81,45,168,0.06);
    padding: 2.5rem 2.2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #ede7f6;
    position: relative;
    overflow: hidden;
}
}
section:hover {
    box-shadow: 0 4px 24px rgba(106,27,154,0.18);
}
section {
    margin-bottom: 2rem;
}
h1, h2 {
    color: #6a1b9a;
    letter-spacing: 0.5px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
input, textarea {
    padding: 0.75rem;
    border: 1.5px solid #b39ddb;
    border-radius: 6px;
    font-size: 1rem;
    background: #f3e5f5;
    transition: border 0.2s;
}
input:focus, textarea:focus {
    border: 1.5px solid #6a1b9a;
    outline: none;
}
button {
    background: linear-gradient(90deg, #7e57c2 60%, #ffd54f 100%);
    color: #4527a0;
    border: none;
    padding: 0.95rem 2rem;
    border-radius: 10px;
    font-size: 1.12rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 3px 12px rgba(126,87,194,0.13);
    letter-spacing: 0.7px;
    margin-top: 0.7rem;
}
button:hover {
    background: linear-gradient(90deg, #ffd54f 60%, #7e57c2 100%);
    color: #1a237e;
    box-shadow: 0 8px 32px rgba(126,87,194,0.18);
    transform: translateY(-2px) scale(1.04);
}
footer {
    text-align: center;
    padding: 1.2rem 0 0.8rem 0;
    background: #ede7f6;
    color: #6a1b9a;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 1.1rem;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -2px 12px rgba(106,27,154,0.08);
}
@media (max-width: 600px) {
    main {
        margin: 0.5rem;
        padding: 0.2rem;
    }
    section {
        padding: 1rem 0.5rem;
    }
    header, footer {
        padding: 1rem 0;
    }
}
