@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@300;400&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', Arial, sans-serif; color: #333; background: #f0f4f8; line-height: 1.7; overflow-x: hidden; }
header { background: linear-gradient(135deg, #00C853, #00A3E0); color: white; text-align: center; padding: 3rem 1.5rem; position: relative; overflow: hidden; }
header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://www.transparenttextures.com/patterns/white-diamond.png') repeat; opacity: 0.1; }
.logo { width: 128px; height: 128px; border-radius: 10px; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.1); }
h1 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 600; margin: 0.5rem 0; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
header p { font-size: 1.3rem; max-width: 600px; margin: 0.5rem auto; font-weight: 300; }
.btn { display: inline-block; padding: 0.9rem 2rem; background: linear-gradient(90deg, #00A3E0, #00C853); color: white; text-decoration: none; border-radius: 25px; margin: 1rem 0; font-family: 'Poppins', sans-serif; font-size: 1rem; transition: all 0.3s ease; box-shadow: 0 3px 6px rgba(0,0,0,0.2); }
.btn:hover { background: linear-gradient(90deg, #00796B, #00A3E0); transform: translateY(-2px); box-shadow: 0 5px 10px rgba(0,0,0,0.3); }
section { max-width: 900px; margin: 2.5rem auto; padding: 1.5rem; background: white; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); opacity: 0; transform: translateY(20px); animation: fadeInUp 0.6s ease forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
section:nth-child(2) { animation-delay: 0.2s; } section:nth-child(3) { animation-delay: 0.4s; } section:nth-child(4) { animation-delay: 0.6s; } section:nth-child(5) { animation-delay: 0.8s; }
h2 { font-family: 'Poppins', sans-serif; color: #00A3E0; font-size: 2rem; margin-bottom: 1rem; position: relative; }
h2::after { content: ''; width: 50px; height: 3px; background: #00C853; position: absolute; bottom: -10px; left: 0; }
ul { list-style: none; padding-left: 0; }
ul li { padding: 0.5rem 0; position: relative; padding-left: 2rem; }
ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #00C853; position: absolute; left: 0; top: 0.6rem; }
form { display: flex; flex-direction: column; max-width: 600px; margin: 1.5rem auto; }
input, textarea { margin: 0.7rem 0; padding: 0.8rem; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s ease; }
input:focus, textarea:focus { border-color: #00A3E0; outline: none; box-shadow: 0 0 5px rgba(0,163,224,0.2); }
textarea { height: 120px; resize: vertical; }
form button { align-self: flex-start; }
footer { text-align: center; padding: 1.5rem; background: linear-gradient(135deg, #00A3E0, #00C853); color: white; margin-top: 3rem; font-size: 0.9rem; }
@media (max-width: 768px) { h1 { font-size: 2rem; } header p { font-size: 1.1rem; } section { margin: 1.5rem; padding: 1rem; } }
@media (max-width: 480px) { h1 { font-size: 1.6rem; } h2 { font-size: 1.6rem; } .btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; } .logo { width: 100px; height: 100px; } }