      .awc-job-announcement-section {
            font-family: 'Cairo', sans-serif;
            background: linear-gradient(135deg, #1e5a8e 0%, #2874b5 50%, #3a9ad9 100%);
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(30, 90, 142, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
            height: 300px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 10px;
            margin-top:20px;
        }

        .awc-job-announcement-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 140, 66, 0.9) 25%, rgba(255, 107, 53, 1) 50%, rgba(255, 140, 66, 0.9) 75%, transparent 100%);
            background-size: 200% 100%;
            animation: awc-waveMove 3s linear infinite;
        }

        @keyframes awc-waveMove {
            0% {
                background-position: 0% 0%;
            }

            100% {
                background-position: 200% 0%;
            }
        }

        .awc-bg-icon {
            position: absolute;
            top: 50%;
            right: 5%;
            transform: translateY(-50%) rotate(-12deg);
            font-size: 220px;
            color: rgba(255, 255, 255, 0.05);
            z-index: 1;
            pointer-events: none;
        }

        .awc-content-wrapper {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 40px;
            position: relative;
            z-index: 2;
            gap: 18px;
        }

        .awc-title-section {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 8px;
        }

        .awc-title-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(255, 107, 53, 0.2));
            backdrop-filter: blur(10px);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.15);
            flex-shrink: 0;
        }

        .awc-title-icon i {
            font-size: 32px;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .awc-section-title {
            font-size: 38px;
            font-weight: 900;
            color: #fff;
            margin: 0;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
            letter-spacing: -0.3px;
            line-height: 1.2;
        }

        .awc-section-description {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            max-width: 650px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 5px;
            font-weight: 500;
        }

        .awc-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            padding: 16px 45px;
            border-radius: 6px;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4), 0 3px 10px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: none;
            letter-spacing: 0.3px;
        }

        .awc-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .awc-cta-button:hover::before {
            left: 100%;
        }

        .awc-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5), 0 5px 15px rgba(0, 0, 0, 0.2);
            color: #fff;
            text-decoration: none;
        }

        .awc-cta-button:active {
            transform: translateY(-1px);
        }

        .awc-cta-button i {
            margin-left: 10px;
            font-size: 20px;
            vertical-align: middle;
            transition: transform 0.3s ease;
        }

        .awc-cta-button:hover i {
            transform: translateX(5px);
        }

        .awc-cta-button span {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 992px) {
            .awc-content-wrapper {
                padding: 0 30px;
            }

            .awc-section-title {
                font-size: 34px;
            }

            .awc-section-description {
                font-size: 17px;
            }

            .awc-cta-button {
                font-size: 18px;
                padding: 14px 40px;
            }

            .awc-title-icon {
                width: 60px;
                height: 60px;
            }

            .awc-title-icon i {
                font-size: 28px;
            }

            .awc-bg-icon {
                font-size: 180px;
                right: -5%;
            }
        }

        @media (max-width: 768px) {
            .awc-job-announcement-section {
                height: auto;
                min-height: 300px;
                padding: 35px 0 10px 0;
            }

            .awc-content-wrapper {
                padding: 0 20px;
            }

            .awc-title-section {
                flex-direction: column;
                gap: 12px;
            }

            .awc-section-title {
                font-size: 28px;
            }

            .awc-section-description {
                font-size: 16px;
            }

            .awc-cta-button {
                font-size: 17px;
                padding: 13px 35px;
            }

            .awc-bg-icon {
                font-size: 140px;
                opacity: 0.04;
            }
        }