  .hero-section {
            background-color: var(--color-secondary);
            color: var(--color-text-light);
            padding-bottom:200px;
            z-index: 5;
            padding-top: 100px !important;
            overflow: hidden;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }
        .hero-section .site-container {
            position: relative;
            z-index: 1;
        }
        .hero-section .hero-subtitle {
            font-size: 16px;
            color: var(--color-text-secondary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            font-weight: normal;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
            animation-delay: 0.8s;
        }
        .hero-section .hero-subtitle .icon {
            margin-right: 8px;
            color: var(--color-primary);
            font-size: 18px;
            flex-shrink: 0;
        }
        .hero-section .hero-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
            color: white !important;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
            animation-delay: 1s;
        }
        .hero-section .hero-description {
            font-size: 18px;
            color: var(--color-text-secondary);
            margin-bottom: 30px;
            line-height: 1.5;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
            animation-delay: 1.2s;
        }
        .hero-section .hero-buttons {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
            animation-delay: 1.4s;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .hero-section .hero-buttons .primary-button {
            padding: 16px 45px;
            background-color: var(--color-primary);
            color: white;
            border-radius: 18px;
            font-weight: 600;
        }
        .hero-section .hero-buttons .secondary-button {
            border-radius: 18px;
            padding: 16px 45px;
            font-weight: 600;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
            animation-delay: 1.6s;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }

        @media (max-width: 1624px) {
            .hero-section {
                padding-left: 150px;
            }
            
            .hero-section .hero-description {
                font-size: 16px;
                margin-bottom: 25px;
                opacity: 1;
                transform: none;
                animation: none;
            }
        }

        @media (max-width: 1024px) {
            .hero-content {
                gap: 40px;
            }
        }

   @media (max-width: 1167px) {
	   .hero-image img{
				display: none !important;
			}
}

        @media (max-width: 867px) {
            .hero-section {
                padding: 50px 0;
                text-align: center !important;
                padding-top: 45px !important;
            }
			.hero-image img{
				display: none !important;
			}
            .hero-section .hero-title {
                font-size: 30px;
                text-align: center !important;
            }
            .hero-section .hero-description {
                font-size: 15px;
                margin-bottom: 20px;
                padding: 0 25px;
                text-align: center;
            }
            .hero-section .hero-buttons .button {
                width: 90%;
                text-align: center;
            }
            .hero-section .hero-subtitle{
                justify-content: center !important;
            }
            .hero-section .site-container {
            }
            .hero-section .hero-description {
                font-size: 16px;
                margin-bottom: 25px;
                opacity: 1;
                transform: none;
                animation: none;
            }
            .hero-section .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 10px;
                opacity: 1;
                transform: none;
                animation: none;
            }
            .hero-section .hero-buttons .button {
                width: 80%;
                max-width: 250px;
                margin: 0;
                transform: none;
            }
            .hero-section .hero-buttons .button:hover {
                transform: none;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hero-image {
                opacity: 1;
                transform: none;
                animation: none;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 40px 0;
                text-align: center !important;
                padding-top: 45px !important;
            }
            .hero-section .hero-title {
                font-size: 30px;
                text-align: center !important;
            }
            .hero-section .hero-description {
                font-size: 15px;
                margin-bottom: 20px;
                padding: 0 35px;
                text-align: center;
            }
            .hero-section .hero-buttons .button {
                width: 90%;
                text-align: center;
            }
        }