
        .special-section {
            background-color: #f9f9f9;
            padding: 60px 0;
        }
        .special-box {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .special-box:hover {
            transform: translateY(-5px);
        }
        .special-box h5 {
            font-weight: 600;
            color: #ff6f00;
            margin-bottom: 15px;
        }
        .special-box p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
        }
        .special-img {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 2px solid #e0e0e0;
        }
        .special-img img {
            width: 100%;
            height: auto;
            display: block;
        }
    