        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

        :root {
            --primary-color: #0076CE;
            --secondary-color: #00447C;
            --accent-color: #46B8FF;
            --light-gray: #f5f7fa;
            --medium-gray: #e4e6eb;
            --dark-gray: #444444;
            --text-color: #2b2b2b;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            background-color: var(--light-gray);
            color: var(--text-color);
            line-height: 1.6;
            font-weight: 300;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: var(--white);
            color: var(--text-color);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            max-height: 40px;
        } */

        .tagline {
            font-size: 0.9rem;
            font-weight: 300;
            color: var(--dark-gray);
            margin-left: 20px;
        }

        /* Navigation Styles */
        /* nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin: 0 5px;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 10px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav a:hover {
            background-color: rgba(0, 118, 206, 0.08);
            color: var(--primary-color);
        }

        nav a.active {
            color: var(--primary-color);
            font-weight: 500;
        } */

        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(135deg, rgba(0, 118, 206, 0.85), rgba(0, 68, 124, 0.2)), url('./../img/transceiver/bgtcv.webp');
            background-size: cover;
            background-position: center;
            color: white !important;
            padding: 120px 0;
            text-align: center;
            /* margin-bottom: 60px; */
            overflow: hidden;
            padding-top: 10vh;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background-size: cover;
            background-position: center;
            transition: opacity 0.5s ease;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            color: white !important;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .btn:hover {
            background-color: #3a9ddb;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        @media (min-width: 1200px) {
            .hero {
                height: 70vh;
                /* ใช้ display: flex เพื่อให้เนื้อหากระจายตัวได้ดีในพื้นที่ */
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0; /* ปรับ padding เพื่อให้ความสูงเป็นไปตามที่กำหนด */
            }
        }

        /* Section Styles */
        section {
            /* margin-bottom: 60px; */
            padding-top: 15px;
            padding-bottom: 15px;
        }

        section h2 {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 30px;
            text-align: center;
        }

        /* Main Products Carousel */
        .main-products-carousel {
            position: relative;
            max-width: 90%;
            margin: 0 auto 50px;
            overflow: hidden;
            padding: 20px 0;
        }

        .main-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .main-product-slide {
            min-width: 280px;
            max-width: 400px;
            padding: 0 15px;
            box-sizing: border-box;
            flex: 1;
        }

        .main-prev-button {
            left: -5px;
        }

        .main-next-button {
            right: -5px;
        }

        .main-dots {
            margin-top: 30px;
        }

        /* Product Card Styling */
        .product-card {
            background: white;
            border: 1px solid #eaeaea;
            border-radius: 5px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        .product-image {
            margin-bottom: 15px;
            width: 100%;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .product-title {
            font-size: 1.1rem;
            color: var(--text-color);
            font-weight: 500;
            margin-bottom: 10px;
            padding-left: 10px;
            padding-right: 10px;
        }

        .product-price {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .price-btn {
            background-color: #3f6591;
            color: white;
            padding: 10px 20px;
            border-radius: 3px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            transition: background-color 0.3s;
        }

        .price-btn:hover {
            background-color: #305079;
            color: #fffb00;
        }

        .mail-icon {
            display: inline-block;
            width: 16px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
            margin-right: 8px;
            background-repeat: no-repeat;
        }

        /* Section Title Styling */
        .section-title {
            text-align: center;
            color: var(--text-color);
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .title-accent {
            height: 4px;
            width: 100px;
            background-color: #FFD700;
            margin: 0 auto 30px;
            position: relative;
        }

        .title-accent:before,
        .title-accent:after {
            content: '';
            position: absolute;
            height: 1px;
            background-color: #ddd;
            top: 1.5px;
            width: 80px;
        }

        .title-accent:before {
            left: -100px;
        }

        .title-accent:after {
            right: -100px;
        }

        /* Welcome Message */
        .welcome-message {
            text-align: center;
            margin-bottom: 40px;
        }

        .welcome-title {
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .welcome-message p {
            margin-bottom: 5px;
            color: #666;
            font-size: 1.1rem;
        }

        /* About Section */
        /* .about-section {
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
        }

        .about-section h3 {
            color: var(--secondary-color);
            font-size: 1.6rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .about-section p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            line-height: 1.8;
        } */

        /* Section Styles */
        #about {
            padding: 80px 0;
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        #about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 168, 255, 0.05) 100%); */
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .title-accent {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            margin: 0 auto 40px;
            border-radius: 2px;
        }

        .welcome-message {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
        }

        .welcome-message p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-gray);
            margin: 0;
        }

        /* Carousel Styles */
        .main-products-carousel {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
            padding: 20px 0;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 25px;
            padding: 10px 5px;
        }

        .main-product-slide {
            min-width: calc(33.333% - 20px);
            transition: all 0.3s ease;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .product-image {
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light-gray);
        }

        .product-image img {
            max-width: 100%;
            max-height: 160px;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-title {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin: 0 0 20px;
            font-weight: 600;
            flex-grow: 1;
        }

        .price-btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: var(--white);
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
        }

        .price-btn:hover {
            background: linear-gradient(to right, var(--accent-color), var(--primary-color));
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
        }

        .fs16 {
            font-size: 16px;
        }

        .me-2 {
            margin-right: 8px;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            color: var(--primary-color);
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .carousel-button:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .main-prev-button {
            left: 10px;
        }

        .main-next-button {
            right: 10px;
        }

        @media (max-width: 992px) {
            .main-product-slide {
                min-width: calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            .main-product-slide {
                min-width: calc(100% - 20px);
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            #about {
                padding: 60px 0;
            }
        }


        /* Responsive Adjustments for Carousels */
        @media (max-width: 992px) {
            .main-product-slide {
                min-width: 50%;
            }
        }

        @media (max-width: 768px) {
            .main-product-slide {
                min-width: 100%;
            }

            .main-products-carousel {
                max-width: 100%;
            }
        }

        /* Product Carousel */
        .product-carousel-container {
            margin: 40px 0;
            padding: 30px;
            background-color: var(--light-gray);
            border-radius: 8px;
        }

        .product-carousel-container h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 500;
            text-align: center;
        }

        .product-carousel {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
            padding: 0 10px;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
        }

        .carousel-slide img {
            width: auto;
            max-width: 100%;
            height: auto;
            max-height: 250px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            object-fit: contain;
        }

        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 10px;
            right: 10px;
            background: rgba(0, 76, 128, 0.8);
            color: white;
            padding: 10px;
            text-align: center;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
            font-weight: 500;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-button:hover {
            opacity: 1;
        }

        .prev-button {
            left: 10px;
        }

        .next-button {
            right: 10px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--medium-gray);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .dot.active {
            background: var(--primary-color);
        }

        /* Factories */
        .factories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .factory {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .factory:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .factory h3 {
            color: var(--secondary-color);
            padding: 20px;
            font-weight: 500;
        }

        .factory-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .factory-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .factory:hover .factory-image img {
            transform: scale(1.05);
        }

        /* Product Section Styles */
        .product-section {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
            margin-top: 50px;
        }

        .product-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 30px 40px;
        }

        .product-header h2 {
            color: white;
            margin: 0;
            text-align: left;
        }

        .product-content {
            padding: 40px;
        }

        .product-info {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }

        .product-details {
            flex: 1;
            min-width: 300px;
        }

        .product-image-container {
            flex: 0 0 300px;
            text-align: center;
            align-self: center;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image-container img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            object-position: center;
            transition: transform 0.3s ease;
        }

        .product-image {
            max-width: 100%;
            /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); */
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .product-image:hover {
            transform: scale(1.05);
        }

        .product-info h3 {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .product-info ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .product-info li {
            margin-bottom: 8px;
        }

        /* Table Styling */
        .table-container {
            overflow-x: auto;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background-color: var(--white);
        }

        table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 500;
        }

        table td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--medium-gray);
        }

        table tr:last-child td {
            border-bottom: none;
        }

        table tr:hover {
            background-color: rgba(0, 118, 206, 0.05);
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 60px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/600/400');
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }

        .contact-content {
            position: relative;
            z-index: 1;
        }

        .contact-section h2 {
            color: white;
            margin-bottom: 30px;
            text-align: left;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-item h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .contact-item p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .contact-item a {
            color: white;
            text-decoration: underline;
            transition: opacity 0.3s;
        }

        .contact-item a:hover {
            opacity: 0.8;
        }

        /* Footer Styles */
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--white);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 992px) {
            .hero {
                padding: 80px 0;
                padding-top: 120px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-section,
            .product-content,
            .contact-section {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .hero {
                padding: 80px 0;
                padding-top: 120px;
            }

            /* nav {
                margin-top: 15px;
                width: 100%;
                overflow-x: auto;
            }

            nav ul {
                width: 100%;
                justify-content: space-between;
            } */

            .hero h1 {
                font-size: 2rem;
            }

            .product-header {
                padding: 20px;
            }

            .product-image-container {
                flex: 0 0 100%;
                margin-bottom: 20px;
            }

            .factories {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 60px 0;
                padding-top: 120px;
            }

            section h2 {
                font-size: 1.8rem;
            }

            .contact-section,
            .about-section,
            .product-content {
                padding: 20px;
            }

            table {
                font-size: 0.8rem;
            }

            table th,
            table td {
                padding: 8px;
            }
        }
        /* CTA Section */
        .cta {
            background: linear-gradient(120deg, #0066ff, #39f2ff);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: white;
        }

        .cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: white;
            color: #5290ec;
            font-weight: bold;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s;
            font-size: 18px;
        }

        .cta-button:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
        }


        /* ClickLink theme alignment */
        :root {
            --cl-primary: #1e3a8a;
            --cl-primary-strong: #172f6d;
            --cl-accent: #2563eb;
            --cl-accent-soft: #dbeafe;
            --cl-surface: #ffffff;
            --cl-surface-alt: #f8fafc;
            --cl-border: #dbe3f0;
            --cl-text: #1f2937;
            --cl-text-muted: #4b5563;
            --cl-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
            --cl-shadow-hover: 0 16px 40px rgba(30, 58, 138, 0.14);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--cl-surface-alt);
            color: var(--cl-text);
            font-family: Arial, sans-serif;
            font-weight: 400;
        }

        section {
            padding-top: 32px;
            padding-bottom: 32px;
        }

        .bg-gray-200 {
            background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
        }

        .bg-white {
            background: #ffffff;
        }

        .hero {
            min-height: auto;
            height: auto;
            padding: 132px 0 88px;
            background:
                linear-gradient(135deg, rgba(30, 58, 138, 0.92), rgba(37, 99, 235, 0.7)),
                url('./../img/transceiver/bgtcv.webp');
            background-size: cover;
            background-position: center;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: auto -8% -60px auto;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            filter: blur(8px);
        }

        .hero-content {
            max-width: 860px;
            padding: 32px 36px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            box-shadow: 0 24px 60px rgba(9, 20, 50, 0.16);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 4vw, 4rem);
            line-height: 1.08;
            margin-bottom: 18px;
            letter-spacing: -0.03em;
        }

        .hero p {
            max-width: 720px;
            margin: 0;
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.9);
        }

        #about {
            padding-top: 72px;
            padding-bottom: 28px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--cl-text);
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }

        .title-accent {
            width: 110px;
            height: 4px;
            background: linear-gradient(90deg, var(--cl-primary) 0%, var(--cl-accent) 100%);
            border-radius: 999px;
            margin-bottom: 26px;
        }

        .title-accent::before,
        .title-accent::after {
            display: none;
        }

        .welcome-message {
            max-width: 880px;
            margin: 0 auto 42px;
            padding: 24px 28px;
            border-radius: 20px;
            background: #ffffff;
            border: 1px solid var(--cl-border);
            box-shadow: var(--cl-shadow);
        }

        .welcome-message p {
            margin: 0;
            color: var(--cl-text-muted);
            font-size: 1rem;
            line-height: 1.8;
        }

        .main-products-carousel {
            max-width: 100%;
            padding: 18px 46px 8px;
        }

        .product-card {
            border: 1px solid var(--cl-border);
            border-radius: 20px;
            box-shadow: var(--cl-shadow);
            padding: 28px 22px 22px;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--cl-shadow-hover);
        }

        .product-image {
            height: 200px;
            margin-bottom: 18px;
        }

        .product-title {
            color: var(--cl-text);
            font-size: 1.05rem;
            line-height: 1.45;
            margin-bottom: 16px;
        }

        .price-btn {
            width: auto;
            min-width: 128px;
            border-radius: 999px;
            background: var(--cl-primary);
            padding: 11px 22px;
            font-weight: 600;
            letter-spacing: 0.01em;
            box-shadow: 0 8px 20px rgba(30, 58, 138, 0.16);
        }

        .price-btn:hover {
            background: var(--cl-accent);
            color: #ffffff;
        }

        .carousel-button {
            width: 46px;
            height: 46px;
            border: none;
            border-radius: 50%;
            background: #ffffff;
            color: var(--cl-primary);
            box-shadow: var(--cl-shadow);
        }

        .carousel-button:hover {
            background: var(--cl-primary);
            color: #ffffff;
        }

        .product-section {
            margin-top: 0;
            margin-bottom: 0;
            border-radius: 24px;
            border: 1px solid var(--cl-border);
            box-shadow: var(--cl-shadow);
            overflow: hidden;
        }

        .product-header {
            background: linear-gradient(135deg, var(--cl-primary) 0%, var(--cl-accent) 100%);
            padding: 24px 30px;
        }

        .product-header h2 {
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .product-content {
            padding: 34px 30px;
            background: #ffffff;
        }

        .product-info {
            gap: 36px;
            align-items: center;
            margin-bottom: 22px;
        }

        .product-details {
            color: var(--cl-text-muted);
        }

        .product-info h3 {
            color: var(--cl-primary);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .product-info p,
        .product-info li {
            color: var(--cl-text-muted);
            line-height: 1.75;
        }

        .product-info ul {
            padding-left: 22px;
        }

        .product-image-container {
            padding: 18px;
            border-radius: 20px;
            background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
            border: 1px solid var(--cl-border);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .product-image {
            background: transparent !important;
        }

        .table-container {
            border: 1px solid var(--cl-border);
            border-radius: 20px;
            box-shadow: none;
        }

        table {
            font-size: 0.92rem;
        }

        table th {
            background: #eaf1ff;
            color: var(--cl-primary);
            font-weight: 700;
            border-bottom: 1px solid var(--cl-border);
        }

        table td {
            color: var(--cl-text-muted);
            border-bottom: 1px solid #e8eef8;
        }

        table tr:hover {
            background: #f8fbff;
        }

        .cta {
            padding: 84px 0;
            background: linear-gradient(135deg, var(--cl-primary) 0%, var(--cl-accent) 100%);
        }

        .cta-container {
            max-width: 860px;
            padding: 0 24px;
        }

        .cta h2 {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .cta p {
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-button {
            background: #ffffff;
            color: var(--cl-primary);
            border-radius: 999px;
            padding: 14px 28px;
            box-shadow: 0 12px 30px rgba(16, 28, 78, 0.2);
        }

        .cta-button:hover {
            background: #eff6ff;
            color: var(--cl-primary);
        }

        @media (max-width: 992px) {
            .hero {
                padding: 118px 0 72px;
            }

            .hero-content {
                padding: 26px 24px;
            }

            .main-products-carousel {
                padding-left: 16px;
                padding-right: 16px;
            }

            .product-content {
                padding: 26px 22px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                text-align: center;
                padding: 112px 0 60px;
            }

            .hero-content {
                padding: 24px 20px;
            }

            .hero p {
                margin: 0 auto;
            }

            .welcome-message {
                padding: 20px;
            }

            .product-header,
            .product-content {
                padding-left: 20px;
                padding-right: 20px;
            }

            .product-header h2 {
                font-size: 1.45rem;
            }

            .table-container {
                border-radius: 16px;
            }
        }
