        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            width: 100%;
        }

        body {
            color: #000;
            background-color: #aa5959;
            overflow-x: hidden;
        }

        :root {
            --primary-blue: #2845D6;
            --accent-orange: #BBCB2E;
            --white: #f36060;
            --black: #000000;
            --light-blue: #E8F4FA;
            --dark-blue: #576A8F;
        }

        #app {
            width: 100%;
            min-height: 100%;
            display: flex;
            flex-direction: column;
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes scaleIn {
            from { transform: scale(0.95); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .page {
            display: none;
            width: 100%;
        }

        .page.active {
            display: block;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: var(--primary-blue);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-family: 'Lilita One', sans-serif;
            font-size: 28px;
            font-weight: 900;
            color: rgb(228, 108, 108);
            letter-spacing: 2px;
            animation: slideInLeft 0.6s ease;
        }

        nav {
            display: flex;
            gap: 50px;
            animation: slideInRight 0.6s ease;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            gap: 6px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -8px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--primary-blue);
            flex-direction: column;
            gap: 0;
            z-index: 999;
            max-height: calc(100vh - 70px);
            overflow-y: auto;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
        }

        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .icon-btn {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .icon-btn:hover {
            color: var(--accent-orange);
        }

        .hero {
            margin-top: 70px;
            height: 700px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(116, 182, 2, 0.7) 0%, rgba(6, 78, 124, 0.5) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 700px;
            animation: fadeIn 1s ease 0.3s backwards;
        }

        .hero-heading {
            font-family: 'Lilita One', sans-serif;
            font-size: 72px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 3px;
            line-height: 1.1;
        }

        .hero-subheading {
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn-primary {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .cta-btn-primary:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(9, 146, 194, 0.3);
        }

        .cta-btn-secondary {
            background: white;
            color: var(--primary-blue);
            border: 2px solid var(--accent-orange);
            padding: 14px 40px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .cta-btn-secondary:hover {
            background: var(--accent-orange);
            color: white;
            transform: translateY(-2px);
        }

        .hero-slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 4;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--accent-orange);
            width: 30px;
            border-radius: 5px;
        }

        section {
            width: 100%;
            padding: 100px 60px;
        }

        .section-title {
            font-family: 'Lilita One', sans-serif;
            font-size: 56px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 50px;
            text-align: center;
            letter-spacing: 2px;
            animation: slideInUp 0.8s ease;
        }

        .section-title-orange {
            color: var(--accent-orange);
        }

        .section-title-blue {
            color: var(--primary-blue);
        }

        .products-section {
            background: white;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            animation: slideInUp 0.8s ease 0.2s backwards;
        }

        .product-card {
            background: white;
            border: 3px solid var(--primary-blue);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
            animation: scaleIn 0.6s ease;
        }

        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(9, 146, 194, 0.2);
            border-color: var(--accent-orange);
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-info {
            padding: 25px;
        }

        .product-name {
            font-family: 'Lilita One', sans-serif;
            font-size: 18px;
            font-weight: 900;
            margin-bottom: 12px;
            color: var(--primary-blue);
            transition: color 0.3s ease;
        }

        .product-card:hover .product-name {
            color: var(--accent-orange);
        }

        .product-description {
            font-size: 13px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 18px;
        }

        .product-price {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .learn-more-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .learn-more-btn:hover {
            background: var(--accent-orange);
            transform: scale(1.05);
        }

        .why-choose-section {
            background: white;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            animation: slideInUp 0.8s ease;
        }

        .benefits-list {
            animation: slideInLeft 0.8s ease 0.2s backwards;
        }

        .benefit-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .benefit-icon {
            font-size: 32px;
            color: var(--accent-orange);
            flex-shrink: 0;
        }

        .benefit-text h3 {
            font-family: 'Lilita One', sans-serif;
            font-size: 18px;
            font-weight: 900;
            margin-bottom: 8px;
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .benefit-text p {
            font-size: 13px;
            line-height: 1.6;
            color: #666;
        }

        .why-choose-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            animation: slideInRight 0.8s ease 0.2s backwards;
        }

        .why-choose-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .why-choose-image:hover img {
            transform: scale(1.05);
        }

        .projects-section {
            background: linear-gradient(135deg, #E8F4FA 0%, #D0E8F2 100%);
            position: relative;
            overflow: hidden;
        }

        .projects-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-behavior: smooth;
            animation: slideInUp 0.8s ease;
        }

        .projects-slider::-webkit-scrollbar {
            height: 8px;
        }

        .projects-slider::-webkit-scrollbar-track {
            background: rgba(9, 146, 194, 0.1);
        }

        .projects-slider::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 4px;
        }

        .project-card {
            min-width: 400px;
            height: 350px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .project-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-image {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
            padding: 30px;
            color: white;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .project-name {
            font-family: 'Lilita One', sans-serif;
            font-size: 22px;
            font-weight: 900;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-details {
            font-size: 13px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .blog-section {
            background: white;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            animation: slideInUp 0.8s ease;
        }

        .blog-card {
            background: white;
            border: 2px solid var(--primary-blue);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(9, 146, 194, 0.15);
            border-color: var(--accent-orange);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-image {
            transform: scale(1.08);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent-orange);
            margin-bottom: 10px;
        }

        .blog-title {
            font-family: 'Lilita One', sans-serif;
            font-size: 16px;
            font-weight: 900;
            margin-bottom: 12px;
            color: var(--primary-blue);
            transition: color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-card:hover .blog-title {
            color: var(--accent-orange);
        }

        .blog-excerpt {
            font-size: 12px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
        }

        .read-more-btn {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .read-more-btn:hover {
            color: var(--accent-orange);
            transform: translateX(5px);
        }

        .cta-section {
            background: var(--primary-blue);
            color: white;
            text-align: center;
            padding: 80px 60px;
        }

        .cta-title {
            font-family: 'Lilita One', sans-serif;
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .quote-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            display: flex;
            gap: 15px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-input {
            flex: 1;
            padding: 14px;
            border: 2px solid var(--accent-orange);
            background: white;
            border-radius: 4px;
            font-size: 13px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: white;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .form-input::placeholder {
            color: #999;
        }

        .submit-btn {
            background: var(--accent-orange);
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            align-self: center;
            min-width: 250px;
        }

        .submit-btn:hover {
            background: white;
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        footer {
            background: var(--black);
            color: white;
            padding: 80px 60px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            font-family: 'Lilita One', sans-serif;
            font-size: 16px;
            font-weight: 900;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-link {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-orange);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 18px;
        }

        .social-icon:hover {
            background: var(--accent-orange);
            transform: scale(1.2);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px;
            font-size: 13px;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form input::placeholder {
            color: #999;
        }

        .newsletter-form button {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form button:hover {
            background: var(--accent-orange);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 8px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            animation: scaleIn 0.4s ease;
            position: relative;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px;
            border-bottom: 2px solid var(--light-blue);
            position: sticky;
            top: 0;
            background: white;
            z-index: 10;
        }

        .modal-header h2 {
            font-family: 'Lilita One', sans-serif;
            font-size: 32px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-blue);
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 32px;
            color: var(--accent-orange);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .modal-close:hover {
            transform: scale(1.2);
        }

        .modal-body {
            padding: 40px;
            font-size: 14px;
            line-height: 1.8;
            color: #333;
        }

        .modal-body h3 {
            font-family: 'Lilita One', sans-serif;
            font-size: 22px;
            font-weight: 900;
            margin: 30px 0 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-blue);
        }

        .modal-body h4 {
            font-family: 'Lilita One', sans-serif;
            font-size: 16px;
            font-weight: 900;
            margin: 20px 0 10px;
            text-transform: uppercase;
            color: var(--accent-orange);
            letter-spacing: 0.5px;
        }

        .modal-body p {
            margin-bottom: 15px;
        }

        .modal-body ul, .modal-body ol {
            margin: 15px 0 15px 30px;
        }

        .modal-body li {
            margin-bottom: 8px;
        }

        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-blue);
            color: white;
            padding: 16px 30px;
            border-radius: 4px;
            z-index: 3000;
            animation: slideInUp 0.4s ease;
            font-weight: 600;
        }

        .toast.success {
            background: var(--accent-orange);
        }

        .toast.error {
            background: #d32f2f;
        }

        .solutions-section {
            background: white;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            animation: slideInUp 0.8s ease;
        }

        .solution-card {
            background: var(--light-blue);
            padding: 40px;
            border-left: 5px solid var(--accent-orange);
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .solution-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(9, 146, 194, 0.15);
        }

        .solution-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .solution-title {
            font-family: 'Lilita One', sans-serif;
            font-size: 20px;
            font-weight: 900;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-blue);
        }

        .solution-description {
            font-size: 13px;
            line-height: 1.7;
            color: #333;
        }

        @media (max-width: 1200px) {
            header {
                padding: 15px 40px;
            }

            section {
                padding: 80px 40px;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-heading {
                font-size: 52px;
            }

            nav {
                gap: 30px;
            }
        }

        @media (max-width: 1024px) {
            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .solutions-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .hero-heading {
                font-size: 42px;
            }

            section {
                padding: 60px 40px;
            }

            .projects-slider {
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .project-card {
                min-width: 100%;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 12px 20px;
            }

            .logo {
                font-size: 20px;
            }

            .hero {
                height: 500px;
                margin-top: 60px;
            }

            .hero-heading {
                font-size: 36px;
            }

            .hero-subheading {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .cta-btn-primary, .cta-btn-secondary {
                width: 100%;
            }

            section {
                padding: 50px 20px;
            }

            .section-title {
                font-size: 36px;
                margin-bottom: 30px;
            }

            .product-grid, .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .modal-body {
                padding: 25px;
            }

            .modal-header {
                padding: 25px;
            }

            .modal-header h2 {
                font-size: 24px;
            }

            .cta-section {
                padding: 50px 20px;
            }

            .quote-form {
                gap: 12px;
            }

            .why-choose-image {
                min-height: 300px;
            }

            .solutions-grid {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 10px 15px;
            }

            .logo {
                font-size: 16px;
                letter-spacing: 1px;
            }

            .hero {
                height: 350px;
            }

            .hero-heading {
                font-size: 28px;
            }

            .hero-subheading {
                font-size: 14px;
            }

            .hero-buttons {
                gap: 10px;
            }

            .cta-btn-primary, .cta-btn-secondary {
                padding: 12px 20px;
                font-size: 11px;
            }

            section {
                padding: 35px 15px;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 25px;
            }

            .product-card, .blog-card {
                margin-bottom: 15px;
            }

            .product-image {
                height: 180px;
            }

            .blog-image {
                height: 150px;
            }

            footer {
                padding: 40px 15px 20px;
            }

            .footer-grid {
                gap: 25px;
            }

            .modal-content {
                max-width: 95%;
            }

            .modal-header {
                padding: 20px;
                flex-direction: column;
                gap: 15px;
            }

            .modal-header h2 {
                font-size: 20px;
            }

            .project-card {
                min-width: 100%;
                height: 200px;
            }

            .benefit-item {
                gap: 15px;
                margin-bottom: 20px;
            }

            .benefit-icon {
                font-size: 28px;
            }

            .benefit-text h3 {
                font-size: 15px;
            }

            .benefit-text p {
                font-size: 12px;
            }

            .solutions-grid {
                gap: 15px;
            }

            .solution-card {
                padding: 25px;
            }

            .solution-title {
                font-size: 16px;
            }

            .solution-description {
                font-size: 12px;
            }
        }
  