:root{
            --primary-color: #1F4C4B;
            --font-color: #F5B942;
        }
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html{
            font-size: 62.5%;
            scroll-behavior: smooth;
        }
        .snowview-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            background-color: var(--primary-color, rgb(4, 118, 4));
            font-size: 2rem;
        }
        .snowview-header img{
            width: 10rem;
            height: auto;
            margin-right: 0;
            border-radius: 50%;
        }
        
        .snowview-header nav ul{
            list-style: none;
             display: flex;
             justify-content: space-between;
             padding: 1rem;
             gap: 1rem;
        }
        .snowview-header a{
            text-decoration: none;
            color: white;
        }
        .snowview-header button{
            background-color: var(--font-color, rgb(171, 150, 28));
            padding: 1rem;
            border-radius: 1rem;
            font-weight: 400;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .snowview-header button:hover{
            cursor: pointer;
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);              
        }
        .notepad{
            width: 300px;
            height: 300px;
        }
        .landing-content{
            background-color: var(--primary-color, rgb(4, 188, 4));
            height: 30rem;
            display: flex;
            justify-content: space-between;
            gap: 1rem;
        }
        .landing-content h2{
            padding: 3rem;
            font-size: 5rem;
            font-weight: bold;
            color: var(--font-color, rgb(171, 150, 28));
        }
        .landing-content h2 span{
            display: block;
        }
        .landing-content button{
            background-color: var(--font-color, rgb(171, 150, 28));
            padding: 1rem;
            margin-left: 4rem;
            border-radius: 1rem;
        }
         .view-section img{
            width: 40rem;
            height: auto;
        }
        .search-input {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding: 2rem;
            margin: -5rem auto 4rem auto;
            width: 90%;
            max-width: 1000px;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 10;
            font-size: 1.6rem;
        }
        .search-input label {
            margin-right: 0.5rem;
            font-weight: 500;
            color: #333;
        }
        .search-input select,
        .search-input input[type="date"] {
            padding: 0.8rem 1rem;
            border-radius: 0.5rem;
            border: 1px solid #ccc;
            font-size: 1.5rem;
        }
        .search-input button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0.7rem;
            font-size: 1.6rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-input button:hover {
            background-color: #163e3d;
        }
        .appointment {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 4rem;
            gap: 3rem;
            height: 50rem;
        }

        .appointment form {
            flex: 1;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            font-size: 1.6rem;
        }

        .appointment form h2 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .appointment form p {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .appointment input,
        .appointment textarea {
            padding: 1rem;
            font-size: 1.5rem;
            border-radius: 0.5rem;
            border: 1px solid #ccc;
        }

        .appointment button[type="submit"] {
            background-color: var(--primary-color, #1F4C4B);
            color: white;
            border: none;
            padding: 1rem 2rem;
            align-items: center;
            font-size: 1.6rem;
            border-radius: 0.5rem;
            cursor: pointer;
            width: fit-content;
        }

        .appointment img.notepad {
            flex: 1;
            max-width: 40rem;
            height: 47rem;
            object-fit: cover;
            border-radius: 1rem;
        }
        .departments-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 2rem;
            box-sizing: border-box;
        }

        .departments-track {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 2rem;
            -ms-overflow-style: none; 
        }

        .departments-track::-webkit-scrollbar {
            width: 0px;
            height: 0px;
            background: transparent;
            display: none; 
        }  

        .department-card {
            flex: 0 0 auto;
            width: 250px;
            background: white;
            border: 1px solid #ccc;
            border-radius: 0.5rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .department-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 0.5rem 0.5rem 0 0;
        }

        .department-card p {
            padding: 1rem;
            font-size: 1.4rem;
        }

        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary-color, #1F4C4B);
            color: white;
            border: none;
            padding: 1rem;
            font-size: 2rem;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
        }

        .scroll-btn.left {
            left: 10px;
        }

        .scroll-btn.right {
            right: 10px;
        }
        .testimonials-section {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 2rem;
            padding: 4rem 2rem;
            background: #f6f6f6;
            flex-wrap: wrap;
        }

        .testimonial-card {
            background-color: #4e6666;
            color: white;
            border-radius: 1rem;
            width: 280px;
            padding: 2rem;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .testimonial-card.featured {
            background-color: #174c4c;
            width: 340px;
            transform: scale(1.05);
            z-index: 1;
        }

        .testimonial-card img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 1rem;
        }

        .testimonial-card p {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .testimonial-card h4 {
            font-size: 1.6rem;
            font-weight: bold;
            margin: 0;
        }

        .testimonial-card::before {
            content: "❝";
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 2.5rem;
            color: var(--font-color, #f5b942);
        }

        .testimonial-card::after {
            content: "❞";
            position: absolute;
            bottom: 10px;
            right: 15px;
            font-size: 2.5rem;
            color: var(--font-color, #f5b942);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .social-links i.bx-whatsapp { color: #25D366; }
        .social-links i.bx-facebook { color: #1877F2; }
        .social-links i.bx-twitter-x { color: #000000; }
        .social-links i.bx-instagram-alt { color: #E1306C; }

        footer {
            background-color: #1F4C4B;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            font-size: 1.6rem;
            position: relative;
        }

        footer article {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        footer article a {
            color: #F5B942;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer article a:hover {
            color: white;
        }

        footer .social-links ul {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            padding: 0;
            margin: 0;
            justify-content: center;
        }

        footer .social-links a {
            color: white;
            font-size: 2.2rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        footer .social-links a:hover {
            color: #F5B942;
            transform: scale(1.1);
        }

        footer p {
            margin-top: 2rem;
            font-size: 1.4rem;
        }
        .hamburger {
            display: none;
        }
       
        @media (max-width: 768px) {
            .snowview-header {
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem;
            }

            .hamburger {
                display: block;
                font-size: 3rem;
                color: white;
                cursor: pointer;
                align-self: flex-end;
            }

            .snowview-header nav {
                display: none;
                width: 100%;
                background-color: var(--primary-color);
                margin-top: 1rem;
            }

            .snowview-header nav.show {
                display: block;
            }

            .snowview-header nav ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                padding: 1rem;
            }

            .snowview-header button.submit {
                align-self: stretch;
                margin-top: 1rem;
                width: 100%;
            }

            .snowview-header h1 {
                font-size: 2.5rem;
                width: 100%;
                text-align: left;
                margin-bottom: 0.5rem;
            }

            .landing-content {
                flex-direction: column;
                height: auto;
                padding: 2rem 1rem;
            }

            .landing-content h2 {
                font-size: 3.2rem;
                padding: 1rem 0;
            }

            .landing-content button {
                margin: 1rem auto;
                max-width: 250px;
                width: 100%;
                font-size: 1.6rem;
                display: block;
            }

            .view-section img {
                width: 100%;
                max-width: 100%;
                height: auto;
            }

            .search-input {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
                padding: 1.5rem;
                margin: 2rem 1rem;
                width: auto;
            }

            .search-input label {
                margin-bottom: 0.3rem;
            }

            .search-input select,
            .search-input input {
                width: 100%;
            }

            .appointment {
                flex-direction: column;
                padding: 2rem 1rem;
                height: auto;
            }

            .appointment img.notepad {
                width: 100%;
                max-width: 300px;
                height: auto;
                margin: 0 auto; 
                display: block;
            }

            .appointment form {
                width: 100%;
            }

            .departments-track {
                gap: 1rem;
            }

            .scroll-btn {
                display: none; 
            }

            .department-card {
                width: 200px;
            }

            .testimonials-section {
                flex-direction: column;
                align-items: center;
                padding: 2rem 1rem;
            }

            .testimonial-card,
            .testimonial-card.featured {
                width: 90%;
            }

            footer article {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }

            footer .social-links ul {
                flex-wrap: wrap;
                gap: 1rem;
            }
        }