
body, html { margin: 0; padding: 0; width: 100%; height: 100%; font-family: 'Roboto', sans-serif; overflow-x: hidden; }
body { background: linear-gradient(to bottom, #121E3F, #4C2B8D); color: white; line-height: 1.6; padding: 20px; box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 { color: #61FF75; margin-top: 20px; margin-bottom: 10px; }
p, li, td, th { font-size: 16px; color: white; margin-bottom: 15px; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
header { text-align: center; margin-bottom: 40px; }
header h1 { font-size: 3em; }
header p { font-size: 1.2em; }
section { margin-bottom: 40px; padding: 20px; background: rgba(255, 255, 255, 0.1); border-radius: 10px; }
.button { display: inline-block; padding: 15px 30px; background: linear-gradient(90deg, #61FF75, #FF9500); color: white; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; }
.button:hover { transform: scale(1.05); box-shadow: 0 0 10px #61FF75; }
.icon { display: inline-block; width: 50px; height: 50px; background: #61FF75; border-radius: 50%; margin-right: 15px; position: relative; transition: all 0.3s ease; }
.icon::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; border: 2px solid #61FF75; border-radius: 50%; opacity: 0; transition: all 0.3s ease; }
.icon:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card { background: rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 10px; transition: all 0.3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 0 20px #61FF75; }
.timeline { position: relative; padding: 20px 0; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #61FF75; transform: translateX(-50%); }
.timeline-item { position: relative; padding: 20px 40px; }
.timeline-item::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; background: #61FF75; border-radius: 50%; z-index: 1; }
.timeline-item:nth-child(even) { padding-left: 40px; padding-right: 0; }
.timeline-item:nth-child(odd) { padding-right: 40px; padding-left: 0; }
@media (max-width: 768px) { .timeline::before { left: 20px; } .timeline-item { padding: 20px; } .timeline-item:nth-child(even), .timeline-item:nth-child(odd) { padding-left: 40px; padding-right: 0; } .timeline-item::before { left: 20px; } }
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td { border: 1px solid #61FF75; padding: 10px; text-align: left; }
th { background: #61FF75; color: #121E3F; }
td { background: rgba(255, 255, 255, 0.05); }
.accordion { margin-bottom: 20px; }
.accordion-header { background: rgba(255, 255, 255, 0.05); padding: 15px; cursor: pointer; border-radius: 5px; transition: all 0.3s ease; }
.accordion-header:hover { background: rgba(255, 255, 255, 0.1); }
.accordion-content { max-height: 0; overflow: hidden; transition: all 0.3s ease; background: rgba(255, 255, 255, 0.05); padding: 0 15px; }
.accordion-content.active { max-height: 500px; padding: 15px; }
.carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; padding: 20px 0; }
.carousel-item { flex: 0 0 auto; scroll-snap-align: start; width: 300px; height: 200px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; padding: 20px; transition: all 0.3s ease; }
.carousel-item:hover { transform: scale(1.05); box-shadow: 0 0 20px #61FF75; }
footer { text-align: center; margin-top: 40px; padding: 20px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; }

