        /* About-specific styles */
        .welcome-section {
            margin-bottom: 2rem;
            padding: 0 1rem;
        }
        
        .section-title {
            color: #e66a93;
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #f8d7e3;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-title .decor {
            display: inline-block;
            margin: 0 0.5rem;
        }
        
        .intro-card {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            border: 2px solid #f8a5c2;
            line-height: 1.6;
        }
        
        .products-section {
            padding: 0 1rem;
            margin-bottom: 2rem;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 0 auto;
            max-width: 1200px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 15px;
            padding: 1.8rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            text-align: center;
            border: 2px solid #f8a5c2;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
        }
        
        .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(to right, #f8a5c2, #e66a93, #f8a5c2);
            border-radius: 15px 15px 0 0;
        }
        
        .product-card h4 {
            color: #e66a93;
            margin-bottom: 0.75rem;
            font-size: 1.4rem;
            text-align: center;
            border-bottom: 1px dashed #f8d7e3;
            padding-bottom: 0.5rem;
            white-space: nowrap; /* Prevent wrapping */
        }
        
        .product-card p {
            font-size: 1rem;
            line-height: 1.5;
            text-align: center;
        }
        
        .closing-section {
            padding: 0 1rem;
            margin-bottom: 2rem;
        }
        
        .outro-card {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            max-width: 800px;
            margin: 0 auto;
            border: 2px solid #f8a5c2;
            text-align: center;
            line-height: 1.6;
        }
        
        .outro-card h4 {
            color: #e66a93;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #f8d7e3;
            display: inline-block;
            white-space: nowrap; /* Prevent wrapping */
        }
        
        .note {
            margin-top: 1.5rem;
            font-style: italic;
            color: #777;
            font-size: 0.95rem;
            background-color: #ffeef5;
            padding: 1rem;
            border-radius: 10px;
            display: inline-block;
        }
        
        .section-divider {
            text-align: center;
            margin: 1.5rem 0;
            font-size: 1.5rem;
            color: #f8a5c2;
        }
        
        main {
            min-height: 80vh;
            padding-bottom: 2rem;
        }
        
        /* Card icon styles */
        .card-icon {
            font-size: 2.5rem;
            color: #e66a93;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        /* Profile image styling */
        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            margin: 1rem auto 1.5rem;
            display: block;
            outline: 2px solid #f8a5c2;
        }

        /* Navigation styling for both desktop and mobile */
        nav {
            position: relative;
            padding: 0;
            margin-top: 10px; /* Increased for more space */
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        /* Desktop navigation bar */
        .desktop-nav {
            display: flex;
            justify-content: center;
            background-color: rgba(255, 245, 250, 0.95);
            padding: 0.8rem 0;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin: 0 auto;
            max-width: 800px;
            border: 2px solid #f8a5c2;
        }
        
        .desktop-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .desktop-nav li {
            margin: 0 1.5rem;
        }
        
        .desktop-nav a {
            text-decoration: none;
            color: #e66a93;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }
        
        .desktop-nav a:hover {
            background-color: #ffeef5;
            color: #d04477;
        }
        
        /* Hamburger menu styling - only for mobile */
        .hamburger-menu {
            cursor: pointer;
            display: none; /* Hide by default on desktop */
            z-index: 100;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            width: fit-content;
            margin: 0 auto;
            border: 2px solid #f8a5c2;
        }
        
        /* Mobile navigation responsiveness */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none; /* Hide desktop nav on mobile */
            }
            
            .hamburger-menu {
                display: block; /* Show hamburger on mobile */
            }
            
            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(255, 245, 250, 0.95);
                padding: 20px 0;
                list-style: none;
                margin: 0;
                display: none;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                z-index: 99;
                border-radius: 0 0 15px 15px;
            }
            
            .nav-menu.active {
                display: block;
            }
            
            .nav-menu li {
                padding: 10px 20px;
                text-align: center;
            }
        }