.sizing-card {
 background-color: #f5f5f3;
 border-radius: 1.25rem;
 padding: 3rem 2rem;
 max-width: 1000px;
 margin: 0 auto 4rem auto;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sizing-section {
 display: flex;
 flex-wrap: wrap;
 gap: 2rem;
 justify-content: space-between;
 margin-bottom: 2rem;
}

.sizing-image,
.sizing-table {
 flex: 1;
 min-width: 280px;
}

.sizing-table h2 {
 font-size: 1.6rem;
 margin-bottom: 1rem;
 color: #322f33;
 font-weight: 700;
}

.sizing-table table {
 width: 100%;
 border-collapse: collapse;
 background-color: white;
 border: 1px solid #ddd;
 font-size: 1.05rem; /* increased from 0.95rem */
 transition: box-shadow 0.3s ease;
}

.sizing-table th,
.sizing-table td {
 text-align: center;
 padding: 0.75rem; /* increased from 0.5rem */
 border: 1px solid #ddd;
}

.sizing-table th {
 background-color: #eee;
 font-weight: 700;
 color: #322f33;
}

/* Optional: hover effect for interactivity */
.sizing-table table:hover {
 box-shadow: 0 0 0 2px #d6d3c4;
 border-color: #cfcfcf;
}
