* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', sans-serif;
background: #fef6e4;
color: #001858;
line-height: 1.75;
}
.hero {
background: linear-gradient(135deg, #f582ae 0%, #001858 100%);
padding: 5rem 2rem;
text-align: center;
color: white;
clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.hero h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.container {
max-width: 900px;
margin: -4rem auto 3rem;
background: white;
padding: 4rem;
border-radius: 25px;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
h2 {
color: #001858;
font-size: 2.2rem;
margin: 2.5rem 0 1.5rem;
font-weight: 800;
border-bottom: 3px solid #f582ae;
padding-bottom: 0.5rem;
}
h3 {
color: #f582ae;
font-size: 1.7rem;
margin: 2rem 0 1rem;
font-weight: 600;
}
p {
margin-bottom: 1.5rem;
font-size: 1.1rem;
line-height: 1.9;
color: #333;
}
a {
color: #f582ae;
text-decoration: none;
font-weight: 600;
border-bottom: 2px solid #f582ae;
transition: all 0.3s;
}
a:hover {
color: #001858;
border-bottom-color: #001858;
}
.tips-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 2.5rem 0;
}
.tip-card {
background: linear-gradient(135deg, #fef6e4, #f9f1e6);
padding: 2rem;
border-radius: 15px;
border-left: 5px solid #f582ae;
}
.tip-card h4 {
color: #001858;
font-size: 1.3rem;
margin-bottom: 1rem;
font-weight: 600;
}
.warning-box {
background: #ffe0e0;
padding: 2rem;
border-radius: 12px;
margin: 2rem 0;
border: 2px solid #ff6b6b;
}
ul {
margin: 1.5rem 0 1.5rem 2rem;
}
li {
margin-bottom: 1rem;
line-height: 1.8;
}
@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.container { padding: 2.5rem 1.5rem; margin: -3rem 1rem 2rem; }
.tips-grid { grid-template-columns: 1fr; }
}