/* General Reset and Base Styles */
/* main {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
} */

h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

/* --- Auction Rules Styling --- */
.rules-section h1 {
    margin-top: 0;
}

.rules-grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: 1fr;
    gap: 15px;
}

.rule-card {
    background-color: #fff;
    padding: 0px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
}

.step-header {
    font-size: 1.8em;
    font-weight: 700;
    color: #e3001a;
    margin-bottom: 10px;
}

.rule-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.rule-card p {
    font-size: 0.95em;
    color: #555;
}

/* @media (max-width: 992px) {
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media (max-width: 600px) {
    main {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    /* .rules-grid {
        grid-template-columns: 1fr;
    } */
}