.advantages-section {
    background-color: #121212;
    padding: 60px 20px;
    color: #fff;
}

.advantages-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}

.tips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.tip {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.tip:hover {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
}

.tip-title {
    font-size: 22px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 10px;
}

.tip-description {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 40px 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 24px;
    }

    .tip-title {
        font-size: 18px;
    }

    .tip-description {
        font-size: 14px;
    }
}
