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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #ffeef8, #f0fff0);
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(233, 30, 99, 0.7), rgba(255, 107, 157, 0.7)), 
                url('/placeholder.svg?height=600&width=1200') center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4caf50, #81c784);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Business Description */
.business-description {
    padding: 4rem 0;
    background: white;
}

.business-description h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #e91e63;
    text-align: center;
}

.business-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    max-width: 1000px;
    margin: 0 auto;
}

/* Features */
.features {
    padding: 4rem 0;
    background: #f8f9fa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #4caf50;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.feature-card h4 {
    color: #4caf50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Products */
.products-section {
    padding: 4rem 0;
    background: white;
}

.product-category {
    margin-bottom: 4rem;
}

.product-category h3 {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #4caf50;
    padding-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #ffeef8, #f0fff0);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 5px solid #e91e63;
}

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

.product-card h4 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #4caf50;
}

/* Services */
.services-content {
    padding: 4rem 0;
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #ff6b9d;
}

.service-card h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #4caf50;
}

/* Forms */
.order-form,
.contact-content {
    padding: 4rem 0;
    background: white;
}

.form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffeef8, #f0fff0);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
}

.form h3 {
    color: #e91e63;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 0.5rem;
}

.form h3:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #e91e63;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: bold;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: linear-gradient(135deg, #ffeef8, #f0fff0);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #4caf50;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #e91e63;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
    background: white;
}

.legal-content h3 {
    color: #e91e63;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 0.5rem;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #4caf50;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
}
