        /* สีหลักของเว็บไซต์ */
        :root {
            --primary-color: #0077b6;
            --secondary-color: #023e8a;
            --accent-color: #48cae4;
            --text-color: #333;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Sarabun', sans-serif;
        }
        body {
            font-family: 'Kanit', 'Prompt', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
        }
        /* Header */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            animation: fadeInDown 0.6s ease-out;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li {
            margin: 0 15px;
            position: relative;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 10px;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--secondary-color);
        }
        /* Mobile Menu */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #444444;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }
        
        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
        }
        
        .dropdown-content a:hover {
            background-color: #f5f5f5;
            color: #0a43ad;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        /* เมนูมือถือ */
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/api/placeholder/1200/600');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 1rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin-bottom: 2rem;
        }
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn:hover {
            background-color: #2980b9;
            transform: scale(1.05);
        }
        /* Hero Section with Slideshow Styles */
        .hero {
            position: relative;
            height: 80vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: #fff;
            text-align: center;
        }

        .slideshow-container {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.5); /* ทำให้ภาพมืดลงเพื่อให้ข้อความอ่านง่าย */
        }

        .hero-content {
            position: relative;
            z-index: 5;
            text-align: center;
            width: 90%;
            max-width: 800px;
            padding: 2rem;
            border-radius: 10px;
            z-index: 5;
            
        }
        .hero .btn {
            display: inline-block;
            background-color: #0078d7;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .hero .btn:hover {
            background-color: #005fa3;
        }
        /* ปุ่มนำทางสไลด์ */
        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s;
        }
            .prev {
            left: 1rem;
        }
            .next {
            right: 1rem;
        }
            .slide-nav:hover {
                background: rgba(0, 0, 0, 0.8);
        }
            .slide-nav.prev {
                left: 20px;
        }
            .slide-nav.next {
                right: 20px;
        }
            /* ตัวบ่งชี้ตำแหน่งสไลด์ */
            .slide-indicators {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                justify-content: center;
                display: flex;
                gap: 10px;
                z-index: 10;
        }
            .indicator {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.5);
                cursor: pointer;
                transition: background 0.3s;
        }
            .indicator.active {
                background: var(--primary-color);
        }
            /* รองรับขนาดหน้าจอมือถือ */
            @media (max-width: 768px) {
                .hero h1 {
                    font-size: 2rem;
                }
                .hero p {
                    font-size: 1rem;
                }
                .slide-nav {
                    width: 40px;
                    height: 40px;
                    font-size: 1.2rem;
                }
        }
        /* About Section */
        .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 0.5rem auto;
        }
        .about {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 1rem;
            text-align: center;
        }
        .about-content {
            margin-top: 3rem;
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        .about-text {
            flex: 1;
            min-width: 300px;
            text-align: left;
        }
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .about-image img, .gallery-image {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .about-image img:hover, .gallery-image:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        /* Services Section */
        .services {
            background-color: var(--primary-color);
            color: white;
            padding: 5rem 1rem;
        }
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .services-title {
            color: white;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .service-card {
            background-color: white;
            color: var(--dark-color);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        /* Products Section */
        .products {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 1rem;
            text-align: center;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        .product-info {
            padding: 1.5rem;
        }
        .product-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .product-price {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        /* Portfolio Section */
        .portfolio {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 1rem;
            text-align: center;
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .gallery-image:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        /* Gallery Modal Styles */
        .gallery-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
        }
        
        .gallery-modal-content {
            position: relative;
            margin: 2% auto;
            padding: 20px;
            width: 90%;
            max-width: 1200px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-close {
            position: absolute;
            top: 15px;
            right: 20px;
            color: #333;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            z-index: 2100;
            transition: color 0.3s;
        }
        
        .gallery-close:hover {
            color: #0066cc;
        }
        
        #galleryTitle {
            text-align: center;
            margin-bottom: 20px;
            color: #0066cc;
            font-size: 28px;
            font-weight: bold;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 15px;
        }
        
        .gallery-container {
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .gallery-main {
            width: 100%;
            height: 65vh;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            border-radius: 4px;
            overflow: hidden;
            background-color: #f8f8f8;
            border: 1px solid #eaeaea;
        }
        
        .gallery-main img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .gallery-main img:hover {
            transform: scale(1.02);
        }
        
        .gallery-thumbnails {
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 10px;
            overflow-x: auto;
            padding: 10px 0;
            -ms-overflow-style: none;  /* Hide scrollbar in IE and Edge */
            scrollbar-width: none;  /* Hide scrollbar in Firefox */
        }
        
        .gallery-thumbnails::-webkit-scrollbar {
            display: none;  /* Hide scrollbar in Chrome, Safari, Opera */
        }
        
        .thumbnail {
            flex: 0 0 auto;
            width: 120px;
            height: 90px;
            border: 3px solid transparent;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .thumbnail.active {
            border-color: #0066cc;
            transform: translateY(-5px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        
        .thumbnail:hover:not(.active) {
            transform: translateY(-3px);
            border-color: #a0c8ff;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-100%);
            background-color: rgba(255, 255, 255, 0.8);
            color: #0066cc;
            font-size: 24px;
            font-weight: bold;
            border: none;
            padding: 15px;
            cursor: pointer;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 2050;
        }
        
        .gallery-nav:hover {
            background-color: rgba(255, 255, 255, 0.95);
            color: #004999;
            box-shadow: 0 3px 15px rgba(0,0,0,0.3);
        }
        
        .gallery-nav.prev {
            left: 20px;
        }
        
        .gallery-nav.next {
            right: 20px;
        }
        
        /* Counter for images */
        .gallery-counter {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 14px;
        }
        .see-more {
            display: inline-block;
            text-align: center;
            margin-top: 2rem;
            padding: 10px 20px;
            background-color: #0078d7;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .see-more:hover {
            background-color: #005fa3;
        }
        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .category-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .category-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .category-card:hover .category-image img {
            transform: scale(1.05);
        }
        
        .category-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .category-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .category-desc {
            color: var(--text-color);
            margin-bottom: 1rem;
        }
        
        /* Modal แสดงภาพเต็ม */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
        }
        
        .modal-image {
            display: block;
            margin: 0 auto;
            max-width: 90%;
            max-height: 80vh;
            border-radius: 5px;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 25px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
            z-index: 1001;
        }
        
        .close-modal:hover {
            color: #bbb;
        }
        
        .modal-caption {
            margin: 15px auto 0;
            bottom: 20px;
            width: 100%;
            max-width: 700px;
            text-align: center;
            position: absolute;
            color: #ccc;
            padding: 10px;
            font-size: 1rem;
        }
        
        /* ปุ่มนำทางใน Modal */
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            border-radius: 50%;
            cursor: pointer;
            z-index: 1001;
            transition: background 0.3s;
        }
        .prev-img {
            left: 10px;
        }
          
          .next-img {
            right: 10px;
        }          
        .modal-nav:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        .modal-nav.prev-img {
            left: 20px;
        }
        
        .modal-nav.next-img {
            right: 20px;
        }        
        /* Contact Section */
        .contact {
            background-color: var(--light-color);
            padding: 5rem 1rem;
        }
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            border-radius: 10px
        }
        .contact-card {
            flex: 1;
            min-width: 260px;
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .contact-card h3 {
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        .contact-form {
            flex: 2;
            min-width: 300px;
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .contact-card p {
            margin-bottom: 0.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        /* Container for additional content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .content-block {
            margin: 4rem 0;
        }
        .address {
            margin-top: 1rem;
            font-style: normal;
            line-height: 1.8;
        }
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            text-align: center;
            padding: 3rem 5%;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .footer-links {
            display: flex;
            list-style: none;
            margin: 1.5rem 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-links li {
            margin: 0.5rem 1rem;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        .social-links {
            margin: 1.5rem 0;
        }
        .social-links a {
            display: inline-block;
            margin: 0 0.5rem;
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--secondary-color);
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
          }
        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .about-content {
            flex-direction: column;
            }
            
            .about-image {
            order: -1;
            margin-bottom: 2rem;
            }
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        @media (min-width: 768px) {
            .gallery-container {
                flex-direction: row;
            }
            
            .gallery-main {
                width: 80%;
                margin-right: 20px;
                margin-bottom: 0;
            }
            
            .gallery-thumbnails {
                width: 20%;
                flex-direction: column;
            }
            
            .thumbnail {
                width: 100%;
                height: 80px;
            }
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background-color: var(--primary-color);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                padding: 1rem 0;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 1rem 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .about-content {
                flex-direction: column;
            }
            .section-title {
                font-size: 2rem;
            }
            .contact-info {
                flex-direction: column;
            }
            .contact-form, .contact-card {
                width: 100%;
            }
            .gallery-modal-content {
                width: 95%;
                padding: 10px;
            }
            
            .gallery-main {
                height: 300px;
            }
            
            .thumbnail {
                width: 70px;
                height: 70px;
            }
            
            .gallery-nav {
                font-size: 20px;
                padding: 10px;
                width: 40px;
                height: 40px;
            }
        }
        @media screen and (max-width: 576px) {
            section {
              padding: 3rem 1rem;
            }
            
            .hero {
              height: 50vh;
            }
            
            .hero-content {
              width: 90%;
              padding: 1.5rem;
            }
            
            .hero-content h1 {
              font-size: 1.5rem;
            }
            
            .slide-nav {
              padding: 0.5rem 0.3rem;
              font-size: 1rem;
            }
            
            .products-grid,
            .services-grid {
              grid-template-columns: 1fr;
            }
            
            .image-gallery {
              grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            }
            
            .gallery-image {
              height: 130px;
            }

            .gallery-modal-content {
                width: 95%;
                padding: 10px;
                margin: 5% auto;
            }
            
            .gallery-main {
                height: 45vh;
            }
            
            .thumbnail {
                width: 80px;
                height: 60px;
            }
            
            .gallery-nav {
                font-size: 18px;
                padding: 10px;
                width: 40px;
                height: 40px;
            }
            
            #galleryTitle {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .footer-links {
              flex-direction: column;
            }
            
            .footer-links li {
              margin: 8px 0;
            }
          }
          @media screen and (max-width: 768px) {
            /* Mobile Navigation */
            .menu-toggle {
              display: block;
            }
            
            .nav-links {
              position: fixed;
              top: 70px;
              left: -100%;
              flex-direction: column;
              background-color: #0077b6;
              width: 100%;
              text-align: center;
              transition: 0.3s;
              box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
              padding: 20px 0;
            }
            
            .nav-links.active {
              left: 0;
            }
            
            .nav-links li {
              margin: 15px 0;
            }
            
            /* Responsive Hero - keeping original style */
            .hero {
              height: 60vh;
            }
            
            .hero-content h1 {
              font-size: 2rem;
            }
            
            .hero-content p {
              font-size: 1rem;
            }
            
            .section-title {
              font-size: 1.8rem;
            }
            
            .about-content,
            .services-grid {
              gap: 1.5rem;
            }
          
            .menu-toggle {
            display: block;
        }

            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 60px;
                left: 0;
                background-color: #333;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0;
                text-align: center;
            }

            .dropdown-content {
                position: static;
                display: none;
                background-color: #555;
                width: 100%;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 60px;
                left: 0;
                background-color: #333;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0;
                text-align: center;
            }

            .dropdown-content {
                position: static;
                display: none;
                background-color: #555;
                width: 100%;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }
                @media (max-width: 480px) {
                    .image-gallery {
                        grid-template-columns: 1fr;
                    }
                }
            }