
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    min-height: 100vh;
    background: #fafafa;
}

nav {
    position: fixed;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 3px solid #E91E63;
    z-index: 100;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #E91E63;
}

.hero {
    height: 100vh;
    background: url('/attached_assets/image_1759710316178.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding-bottom: 8rem;
}

.hero-content h1 {
    display: none;
}

.cta-button {
    background: #000;
    color: #E91E63;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.how-we-help {
    padding: 4rem 2rem;
    text-align: center;
    background: #fff;
}

.how-we-help h2 {
    margin-bottom: 3rem;
    color: #E91E63;
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #E91E63;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.25);
}

.service-card h3 {
    color: #E91E63;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.highlight {
    font-weight: bold;
    color: #E91E63;
}

button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

button:hover {
    transform: translateY(-2px);
}

.contact-btn {
    background: #E91E63;
    color: white;
}

.contact-btn:hover {
    background: #C2185B;
}

.learn-btn {
    background: #F8A5C2;
    color: #000;
}

.learn-btn:hover {
    background: #F48FB1;
}

.book-btn {
    background: #E91E63;
    color: white;
}

.book-btn:hover {
    background: #C2185B;
}

.pricing-section {
    padding: 4rem 2rem;
    text-align: center;
    background: #fff5f8;
}

.pricing-section h2 {
    color: #E91E63;
    font-size: 2.5rem;
}

.pricing-note {
    color: #666;
    margin-bottom: 2rem;
}

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

.pricing-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #F8A5C2;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.25);
    border-color: #E91E63;
}

.pricing-card img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 5px;
    margin: 0 auto 1rem auto;
    display: block;
    background-color: #f5f5f5;
}

.pricing-card h3 {
    margin: 1rem 0;
    color: #E91E63;
    font-weight: bold;
}

.pricing-card p {
    color: #666;
    margin-bottom: 1rem;
}

.about-section {
    padding: 120px 2rem 4rem;
    text-align: center;
    background: #fff;
}

.about-section h2 {
    margin-bottom: 2rem;
    color: #333;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h3 {
    color: #333;
    margin: 2rem 0 1rem;
}

.about-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        min-height: 100svh;
        padding-bottom: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
        background-size: 90%;
        background-position: center 20%;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        min-height: 44px;
        width: auto;
    }
    
    .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .how-we-help {
        padding: 3rem 1rem;
    }
    
    .how-we-help h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .pricing-section {
        padding: 3rem 1rem;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .success-stories {
        padding: 3rem 1rem;
    }
    
    .success-stories h2 {
        font-size: 2rem;
    }

    button {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
        margin: 8px 0;
    }

    .nav-links a {
        padding: 12px;
        display: inline-block;
        font-size: 0.9rem;
    }

    .pricing-card img {
        height: 200px;
    }
    
    .service-card, .pricing-card, .story-card {
        padding: 1.5rem;
    }
    
    nav {
        padding: 0.75rem 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid, .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero {
        padding-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: 95%;
        padding-bottom: 5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .nav-links {
        gap: 0.75rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 10px;
    }
}

@media (hover: none) {
    button:hover {
        transform: none;
    }
}

html {
    -webkit-text-size-adjust: 100%;
}

button, 
.nav-links a {
    touch-action: manipulation;
}

.success-stories {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.success-stories h2 {
    margin-bottom: 3rem;
    color: #E91E63;
    font-size: 2.5rem;
}

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

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #E91E63;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.15);
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-3px);
}

.story-card h3 {
    color: #E91E63;
    margin-bottom: 1rem;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}
