
        @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Monsieur+La+Doulaise&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nabla&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Monsieur+La+Doulaise&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nabla:EDPT,EHLT@0..200,0..24&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

        :root{
            --b: black;
            --w: white;
            --accent: #0047AB;
            --adjacent: #088F8F;
            --special: Raleway, sans-serif;
            --basic: Montserrat, sans-serif;
            --secondary: DM Sans, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -moz-user-select: none;
            -ms-user-select: none;
            -webkit-user-select:none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            max-width: 100%;
        }

        body {
            font-family: var(--basic);
            color: var(--b);
            background-color: var(--w);
            line-height: 1.6;
            overflow-x: hidden;
            max-width: 100vw;
        }

        body, html {
            width: 100%;
            height: 100%;
        }

        body.dark-mode {
            background-color: var(--b);
            color: var(--w);
        }

        header {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background-color: var(--w);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo img {
            width: 45px;
            height: 45px;
            padding: 0;
            margin: 0;
        }

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

        .nav-links li a {
            text-decoration: none;
            color: var(--b);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links li a:hover {
            color: var(--accent);
        }

        .menu-toggle {
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--b);
            transition: 0.3s;
        }

        .bar {
            text-decoration: none;
            color: var(--b);
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .bar:hover {
            color: var(--accent);
        }

        /* Hero Section */
        .hero {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            margin: 2rem;
            margin-top: 100px;
            padding: 2rem;
            min-height: calc(100vh - 100px);
        }

        .hero-text {
            flex: 1;
            max-width: 50%;
            padding-right: 2rem;
        }

        .hero-text h1 {
            font-family: var(--special);
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hehe {
            color: var(--adjacent);
        }

        .hero-text p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 2rem;
        }

        .hero-text p span {
            color: var(--accent);
            font-weight: 700;
            font-size: clamp(1.1rem, 2.2vw, 1.3rem);
            letter-spacing: 0.1rem;
        }

        .buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .buttons a {
            text-align: center;
            text-decoration: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all ease-in-out 0.3s;
            display: inline-block;
            min-width: 140px;
        }

        .lass {
            background-color: var(--accent);
            color: var(--w);
            border: 2px solid var(--accent);
        }

        .lass:hover {
            background-color: var(--w);
            color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,71,171,0.3);
        }

        .class {
            background-color: var(--w);
            color: var(--adjacent);
            border: 2px solid var(--adjacent);
        }

        .class:hover {
            background-color: var(--adjacent);
            color: var(--w);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(8,143,143,0.3);
        }

        /* Photo Container */
        .photo-container {
            flex: 1;
            display: flex;
            gap: 0;
            justify-content: center;
            align-items: center;
            position: relative;
            max-width: 50%;
        }

        .photo-card {
            width: clamp(200px, 40vw, 350px);
            padding: 10px;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transform: rotate(var(--rotate));
            margin: 0 -20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 10px;
            text-align: center;
            z-index: 1;
        }

        .photo-card:hover {
            transform: scale(1.05) rotate(var(--rotate));
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            z-index: 2;
        }

        .photo-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }

        .photo-card p {
            margin-top: 10px;
            font-family: 'Courier New', monospace;
            font-size: 12px;
            color: #333;
        }

        /* About Section */
        .about {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 4rem 2rem;
            margin: 0 auto;
            max-width: 1200px;
        }

        .about h2 {
            font-family: var(--special);
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .about > p {
            font-family: var(--secondary);
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 3rem;
            text-align: center;
            max-width: 800px;
        }

        .about p span {
            color: var(--accent);
            font-weight: 700;
        }

        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            width: 100%;
            max-width: 1000px;
        }

        .card {
            background-color: var(--w);
            padding: 2rem;
            border: 2px solid var(--accent);
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,71,171,0.1);
        }

        .card h3 {
            font-family: var(--special);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--adjacent);
            text-align: center;
        }

        .card p {
            font-family: var(--secondary);
            font-size: 1rem;
            text-align: justify;
            color: var(--b);
            line-height: 1.6;
        }

        /* Services Section */
        .services {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 4rem 2rem;
            margin: 0 auto;
            max-width: 1200px;
        }

        .services h2 {
            font-family: var(--special);
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .services > p {
            font-family: var(--secondary);
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 3rem;
            text-align: center;
            max-width: 800px;
        }

        .highlight {
            color: var(--adjacent);
            font-weight: 700;
        }

        .greenlight {
            color: var(--accent);
            font-weight: 700;
        }

        /* Contact Section */
        .contact {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            padding: 4rem 2rem;
            margin: 0 auto;
            max-width: 1200px;
            gap: 3rem;
        }

        .contact-text {
            flex: 1;
            max-width: 50%;
        }

        .contact-text h2 {
            font-family: var(--special);
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .contact-text p {
            font-family: var(--secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contact-input {
            flex: 1;
            max-width: 50%;
        }

        .contact-input form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            width: 100%;
            padding: 2rem;
            border-radius: 10px;
            background-color: var(--w);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-input label {
            font-family: var(--secondary);
            font-size: 1.1rem;
            color: var(--accent);
            font-weight: 600;
        }

        .contact-input input,
        .contact-input textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--adjacent);
            border-radius: 8px;
            font-family: var(--secondary);
            font-size: 1rem;
            color: var(--b);
            transition: border-color 0.3s ease;
        }

        .contact-input input:focus,
        .contact-input textarea:focus {
            border-color: var(--accent);
            outline: none;
        }

        .contact-input textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-input button {
            padding: 1rem;
            background-color: var(--accent);
            color: var(--w);
            border: none;
            border-radius: 8px;
            font-family: var(--secondary);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-input button:hover {
            background-color: var(--adjacent);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,71,171,0.3);
        }


        /* Mobile Styles */
        @media (max-width: 768px) {

            body {
                overflow-x: hidden;
                max-width: 100vw;

            }

            nav {
                width: 100%;
                max-width: 100vw;
                /* overflow-x: hidden; */
            }

            .logo img {
                width: 40px;
                height: 40px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--w);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                text-align: center;
                padding: 0.5rem 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

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

            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero {
                flex-direction: column;
                margin: 1rem;
                margin-top: 80px;
                padding: 1rem;
                max-width: 100vw;
                text-align: center;
                overflow-x: hidden;
                width: 100%;
            }

            .hero-text {
                max-width: 100%;
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .photo-container {
                max-width: 100%;
                justify-content: center;
                overflow-x: hidden;
                width: 100%;
            }

            .photo-card {
                width: clamp(130px, 30vw, 200px);
                margin: 0 -5px;
                overflow-x: hidden;
                max-width: 45vw;
            }

            .photo-card img {
                height: 150px;
                margin: 0;
                width: 100%;
            }

            .buttons {
                justify-content: center;
            }

            .buttons a {
                min-width: 120px;
                padding: 0.8rem 1.2rem;
            }

            .about {
                padding: 2rem 1rem;
            }

            .about-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .services {
                padding: 2rem 1rem;
            }

            .contact {
                flex-direction: column;
                padding: 2rem 1rem;
                gap: 2rem;
            }

            .contact-text,
            .contact-input {
                max-width: 100%;
            }

            .contact-input form {
                padding: 1.5rem;
                width: 100%;
                max-width: 100%;
            }

            .contact-input{
                width: 100%;
                max-width: 100vw;
            }

            .about,
            .services,
            .contact {
                max-width: 100vw;
                overflow-x: hidden;
                width: 100%;
            }

        }

        /* Tablet Styles */
        @media (max-width: 1024px) and (min-width: 769px) {
            .hero {
                margin: 1.5rem;
                padding: 1.5rem;
            }

            .photo-card {
                width: clamp(180px, 35vw, 280px);
            }

            .about-cards {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .contact {
                gap: 2rem;
            }

            .contact-input form {
                padding: 1.5rem;
            }
        }

        /* Large Screen Optimizations */
        @media (min-width: 1200px) {
            .hero,
            .about,
            .services,
            .contact {
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero {
                margin-top: 100px;
            }
        }

        /* Animation Improvements */
        .photo-card,
        .card,
        .buttons a {
            will-change: transform;
        }

        /* Accessibility Improvements */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for better accessibility */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
