main {
    padding: 30px 40px;
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    color: #17496E;
    font-family: "Segoe UI", sans-serif;
    font-size: 28px;
    margin-bottom: 5px;
}

h3 {
    color: #17496E;
    font-family: "Segoe UI", sans-serif;
    margin-top: 30px;
}

p {
    font-family: "Segoe UI", sans-serif;
    font-size: 15px;
    color: #333;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 25px 0;
}

/* Stats */
.stats-grid {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.stat-card {
    background: #f0f7ff;
    border: 2px solid #17496E;
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    flex: 1;
}

.stat-card .stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #17496E;
}

.stat-card .stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}


.stat-card .stars-display {
    justify-content: center;
    margin-top: 6px;
}

.stat-card .star {
    font-size: 18px;
}

/* Offers table */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 15px;
}

th {
    background: #17496E;
    color: white;
    padding: 12px 16px;
    text-align: center;
}

td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
}

tr:hover {
    background: #f0f7ff;
}

.btn-back {
    background: #716f6a;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    cursor: pointer;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

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

    h2 {
        font-size: 22px;
    }

    .stats-grid {
        flex-direction: column;
    }

    .stat-card {
        padding: 16px 20px;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    th,
    td {
        padding: 10px 12px;
        font-size: 13px;
    }
}
