        :root {
            --pink: #ff99ff;
            --blue: #D6E5FF;
            --orange: #FFCA9E;
        }

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

        html {
            scroll-snap-type: y mandatory;
            overflow-y: scroll;
            scroll-behavior: smooth;
            height: 100%;
        }

        body {
            font-family: 'Arial', sans-serif;
        }

        /* Navigation Styles */
        .nav-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .hamburger {
            width: 24px;
            height: 20px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #333;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 8px; }
        .hamburger span:nth-child(3) { top: 16px; }

        .nav-toggle.active .hamburger span:nth-child(1) {
            transform: rotate(45deg);
            top: 8px;
        }

        .nav-toggle.active .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg);
            top: 8px;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: right 0.3s ease;
        }

        .nav-menu.active {
            right: 0;
        }

        .nav-menu a {
            font-family: "Bubblegum Sans", serif;
            font-size: 2.5rem;
            color: #333;
            text-decoration: none;
            margin: 1rem 0;
            padding: 1rem;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--pink);
            transform: scale(1.1);
        }

        section {
            min-height: 100vh;
            scroll-snap-align: start;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1rem;
        }

        @font-face {
  	    font-family: 'BubblegumSans';
  	    src: url('fonts/BubblegumSans-Regular.ttf') format('truetype');
	    font-weight: normal;
  	    font-style: normal;
	}
	
	@font-face {
  	    font-family: 'Quicksand';
	    src: url('fonts/Quicksand-VariableFont_wght.ttf') format('truetype');
  	    font-weight: 100 900; /* Adjust the weight range if necessary */
	    font-style: normal;
	}



	p {
            font-family: "Quicksand", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }

        h1, h2 {
            font-family: "BubblegumSans", sans-serif;
            font-weight: 400;
            font-style: normal;
        }



        /* Home Section */
        #home {
            position: relative;
            overflow: hidden;
            background-color: transparent;
            background: rgba(255, 255, 255, 0.6); /* White transparent overlay */
	    flex-direction: column;
            text-align: center;
            padding: 2rem 1rem;
        }

        .background-video {
            position: absolute;
            top: 50%;
            left: 50%;
            max-width: 100%;
            <!--max-height: 100%; -->
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            z-index: -1;
        }

        #home h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            margin-bottom: 1rem;
        }

        #home p {
            font-size: clamp(1rem, 4vw, 1.5rem);
        }

        /* Services Section */
        #services {
            background-color: var(--blue);
            padding: 2rem 1rem;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            width: 100%;
            max-width: 1200px;
            padding: 1rem;
        }

        .service-column {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 1rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: auto;
            min-height: 450px;
            overflow: hidden;
        }

        .service-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            background: #f0f0f0;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .service-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content h2 {
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 4vw, 2rem);
        }

        .service-buttons {
            margin-top: auto;
            display: flex;
            gap: 1rem;
            padding: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
		        text-decoration: none;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 200px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .btn-primary {
            background-color: var(--pink);
            color: white;
        }

        .btn-secondary {
            background-color: white;
            color: #333;
            border: 2px solid var(--pink);
        }

        /* About Section */
        #about {
		        flex-direction: column;
            background-color: var(--orange);
            padding: 2rem 1rem;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1200px;
            width: 100%;
            padding: 1rem;
        }

        .portrait-frame {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: white;
            margin: 0 auto;
            overflow: hidden;
        }

        .portrait-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .about-text {
            background: rgba(255, 255, 255, 0.9);
            padding: 1.5rem;
            border-radius: 1rem;
        }

        .about-text h2 {
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 4vw, 2rem);
        }

        .about-text p {
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 3vw, 1rem);
        }

        <!--Social icons.-->
        .social-icons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            justify-content: center;
        }

        .social-icons a {
            color: #333;
            transition: color 0.3s ease;
            width: 24px;
            height: 24px;
            align-items: center;
            justify-content: center;
        }

        .social-icons a:hover {
            color: var(--pink);
        }

        /* Media Queries */
        @media (min-width: 768px) {
            .about-container {
                grid-template-columns: 1fr 2fr;
            }

            .portrait-frame {
                width: 300px;
                height: 300px;
            }

            .btn {
                width: auto;
            }

            section {
                padding: 2rem;
            }
        }

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

            .service-column {
                margin: 0 auto;
                max-width: 400px;
            }

            .background-video {
                max-height: 100%;
                min-width: none;
                max-width: none;

        }

        @media (max-height: 600px) {
            section {
                padding: 4rem 1rem;
            }
        }
