* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f4f8 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.logo h1 {
    color: #e91e63;
    font-size: 2.5em;
    margin-bottom: 5px;
}

.logo p {
    color: #666;
    font-size: 1.1em;
}

.nav {
    margin-top: 15px;
}

.nav a {
    margin-right: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #e91e63;
}

/* Main Content */
.main-content {
    margin-bottom: 50px;
}

.banner {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 50px;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 40px;
}

.banner h2 {
    font-size: 3em;
    margin-bottom: 15px;
}

.banner p {
    font-size: 1.3em;
    opacity: 0.9;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature h3 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.4em;
}

/* Categories */
.categories h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2.2em;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category:hover {
    border-color: #e91e63;
    color: #e91e63;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info h4 {
    margin-bottom: 15px;
    color: #e91e63;
}

.contact-info p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.copyright {
    text-align: right;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        text-align: center;
    }
    
    .nav a {
        display: inline-block;
        margin: 5px 10px;
    }
    
    .banner {
        padding: 30px 20px;
    }
    
    .banner h2 {
        font-size: 2em;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}
