/* General Styling */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Vendor Dues Section */
.vendor-dues {
    text-align: center;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.vendor-dues .btn-highlight {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.vendor-dues .btn-highlight:hover {
    background-color: #e65500;
}

/* Vendor Cards Section */
.vendor-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.card {
    flex: 1;
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.card .btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ff6600;
    color: #ff6600;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.card .btn-outline:hover {
    background-color: #ff6600;
    color: white;
}

/* Increase Sales Section */
.increase-sales {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.increase-sales h2 {
    margin-bottom: 15px;
}

.increase-sales p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.increase-sales ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.increase-sales li {
    background: white;
    margin: 10px 0;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: #555;
    transition: 0.3s;
}

.increase-sales li:hover {
    background: #ff6600;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vendor-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    main {
        padding: 20px;
    }

    .vendor-dues {
        padding: 20px;
    }

    .vendor-dues .btn-highlight {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .increase-sales {
        padding: 30px;
    }

    .increase-sales ul {
        padding-left: 15px;
    }
}
