        /* Additional contact-specific styles */
        .welcome-section {
            margin-bottom: 2rem;
        }

        .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;
        }
        
        .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;
        }
        
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem auto;
            max-width: 900px;
            padding: 0 1rem;
        }
        
        .contact-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;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
        }
        
        .contact-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;
        }
        
        .contact-icon {
            font-size: 3rem;
            color: #e66a93;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .contact-title {
            font-weight: bold;
            color: #e66a93;
            margin-bottom: 0.75rem;
            font-size: 1.3rem;
        }
        
        .contact-info {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .contact-info a {
            color: #e66a93;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            background-color: #ffeef5;
            display: inline-block;
            text-align: center;
            word-break: break-word;
            max-width: 100%;
        }
        
        .contact-info a:hover {
            color: white;
            background-color: #e66a93;
            text-decoration: none;
        }
        
        .form-section {
            margin: 3rem auto;
        }
        
        .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;
        }
        
        .outro-card h4 {
            color: #e66a93;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #f8d7e3;
            display: inline-block;
        }
        
        .contact-form {
            margin-top: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #e66a93;
            font-weight: 600;
            font-size: 1.05rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #f8a5c2;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            background-color: #ffeef5;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e66a93;
            box-shadow: 0 0 0 3px rgba(230, 106, 147, 0.2);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: #e66a93;
            color: white;
            border: none;
            padding: 0.9rem 2.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(230, 106, 147, 0.3);
            margin: 1rem 0;
        }
        
        .submit-btn:hover {
            background-color: #d04477;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 106, 147, 0.4);
        }
        
        .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;
        }

        /* Optional decorative elements */
        .decorative-corner {
            position: absolute;
            width: 40px;
            height: 40px;
            color: #f8a5c2;
            font-size: 1.5rem;
        }
        
        .top-left {
            top: 0.5rem;
            left: 0.5rem;
        }
        
        .top-right {
            top: 0.5rem;
            right: 0.5rem;
        }
        
        .bottom-left {
            bottom: 0.5rem;
            left: 0.5rem;
        }
        
        .bottom-right {
            bottom: 0.5rem;
            right: 0.5rem;
        }

        main {
            min-height: 80vh;
            padding-bottom: 2rem;
        }

        /* 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;
            }
        }