    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .headline {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin-bottom: 40px;
    }
    .headline h2 {
        color: #ed5434;
        font-size: 2.2em;
        border-left: 5px solid #ed5434;
        padding-left: 15px;
    }
    .slider-wrapper {
        margin-bottom: 40px;
    }
    .slider-item {
        position: relative;
        height: 400px;
        overflow: hidden;
        border-radius: 8px;
    }
    .slider-item img {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    .slider-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px 20px;
        z-index: 2;
        color: white;
        background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.3), transparent);
    }
    .slider-caption h3,
    .slider-caption p,
    .slider-caption small {
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    }
    .slider-caption .btn {
        background: #ed5434;
        color: white;
        padding: 10px 15px;
        border-radius: 4px;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
    }
    .news-feed {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .news-item {
        display: flex;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    .news-item img {
        width: 200px;
        height: 150px;
        object-fit: cover;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        box-shadow: inset 0 0 1px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    .news-item:hover img {
        transform: scale(1.03);
    }
    .news-content {
        padding: 15px;
        flex: 1;
    }
    .news-content h4 {
        margin: 0 0 10px;
        font-size: 1.3em;
        color: #ed5434;
    }
    .news-content small {
        color: #777;
    }
    .news-content p {
        color: #333;
        margin: 10px 0;
    }
    .news-content .btn {
        background: #ed5434;
        color: white;
        padding: 6px 10px;
        border-radius: 4px;
        font-size: 0.9em;
        text-decoration: none;
    }
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
@media screen and (max-width: 768px) {
    .container {
        padding: 10px 15px;
    }

    .headline h2 {
        font-size: 1.8em;
    }

    .slider-item {
        height: auto;
        flex-direction: column;
    }

    .slider-item img {
        position: relative;
        height: auto;
    }

    .slider-caption {
        position: relative;
        background: #ed5434;
        color: white;
        padding: 15px;
        font-size: 14px;
    }

    .slider-caption h3 {
        font-size: 1.2em;
    }

    .slider-caption p {
        font-size: 0.95em;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item img {
        width: 100%;
        height: auto;
        border-radius: 8px 8px 0 0;
    }

    .news-content h4 {
        font-size: 1.1em;
    }

    .news-content p {
        font-size: 0.95em;
    }

    .news-content .btn {
        font-size: 0.85em;
        padding: 8px 12px;
        display: inline-block;
        margin-top: 10px;
    }

    .news-feed {
        gap: 20px;
    }
}
