.feature-card {
    display: flex;
    align-items: center;
    background: #1c1c1c;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.feature-card img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
}

.feature-content {
    max-width: 600px;
}

.feature-content h3 {
    font-size: 1.8em;
    color: #ffd700;
}

.feature-content p {
    font-size: 1.1em;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

.btn:hover {
    background: #ffcc00;
}

@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    .feature-card img {
        margin-bottom: 15px;
        width: 100%;
    }
}
