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

body {
    background: linear-gradient(135deg, #faf3f5, #f5f5f7);
    min-height: 100vh;
}

/* Navigation Styles */
.nav-container {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.logo span {
    color: #e9b7ce;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e9b7ce;
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-btn, .secondary-btn {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.primary-btn {
    background: #e9b7ce;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 183, 206, 0.3);
}

.secondary-btn {
    background: white;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 183, 206, 0.4);
}

/* Decorative Elements */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    z-index: 1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #e9b7ce;
    top: 20%;
    left: 10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #b7d4e9;
    bottom: 10%;
    right: 5%;
}

/* Responsive Design */
@media (max-width: 768px) {
  

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
    /* Hamburger menu */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 100;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 2px 0;
        transition: all 0.3s ease;
    }
    