.showcase-container {
    background-color: #ffffff;
    padding: 50px;
    width: auto;
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-title {
    font-size: 3em;
    color: #FF7F50;
    margin-bottom: 10px;
}

.showcase-subtitle {
    font-size: 1.5em;
    color: #777;
    margin: 0;
}

.showcase-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}


.feature-item {
    background-color: #f0f0f0;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ff9966;
    width: 400px;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5em;
    color: #FF7F50;
    margin-right: 20px;
}

.feature-text {
    font-size: 1.2em;
    color: #333;
}

@media(max-width:600px) {
    .showcase-features {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .feature-item {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .showcase-features {
        grid-template: inherit;
    }

    .showcase-title {
        font-size: 2.5em;
    }

    .showcase-subtitle {
        font-size: 1.3em;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-icon {
        font-size: 2em;
    }

    .feature-text {
        font-size: 1em;
    }
}