.home {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1320px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            background-color: #ffffff;
        }

        .home-content {
            flex: 1;
            min-width: 300px;
        }

        .home-image {
            flex: 1;
            min-width: 300px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .home-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .home-image:hover img {
            transform: scale(1.02);
        }

        .section-title {
            color: #246eaf;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .main-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.2s forwards;
            text-transform: uppercase;
        }

        .main-title span {
            color: #2368ad;
        }

        .description {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        /* New features section */
        .features {
            margin: 25px 0 30px 0;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.5s forwards;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            gap: 12px;
        }

        .feature-icon {
            color: #2368ad;
            font-size: 18px;
            min-width: 24px;
            margin-top: 3px;
        }

        .feature-text {
            font-size: 16px;
            color: #555;
            line-height: 1.5;
        }

        .home-icon {
            display: flex;
            align-items: center;
            /*justify-content: center;*/
            gap: 20px;
            margin-top: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .icon-logo {
            width: 35px;
            height: 35px;
            background-color: #2368ad;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
        }

        .icon-logo img {
            width: 40px;
            height: 40px;
        }

        .icon-info {
            text-align: center;
        }

        .icon-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #2368ad;
        }

        .icon-title {
            font-size: 14px;
            color: #555;
        }

        .icon-element {
            width: 50px;
            height: 50px;
            background-color: #008080;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
        }

        .icon-element img {
            width: 25px;
            height: 25px;
            filter: invert(1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .home {
                flex-direction: column;
                padding: 20px 15px;
            }
            
            .section-title {
                font-size: 14px;
            }
            
            .main-title {
                font-size: 24px;
            }
            
            .description,
            .feature-text {
                font-size: 14px;
            }
            
            .home-icon {
                flex-direction: column;
                text-align: center;
                padding: 15px;
                margin-top: -20px;
            }
            
            .icon-info {
                margin-top: 10px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 12px;
            }
            
            .main-title {
                font-size: 20px;
            }
            
            .description,
            .feature-text {
                font-size: 13px;
            }
            
            .feature-icon {
                font-size: 16px;
            }
            
            .icon-logo {
                width: 50px;
                height: 50px;
            }
            
            .icon-logo img {
                width: 30px;
                height: 30px;
            }
            
            .icon-element {
                width: 40px;
                height: 40px;
            }
            
            .icon-element img {
                width: 20px;
                height: 20px;
            }
            
            .icon-name {
                font-size: 16px;
            }
            
            .icon-title {
                font-size: 12px;
            }
        }