@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --bg-color: #fdfdfd;
    --text-color: #222;
}
body.darkmode {
    --bg-color: #121212;
    --text-color: #eee;
}
body {
    font-family: "DM Sans", sans-serif;
    margin: 0;
    padding: 2rem 1rem;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    transition: background-color 0.3s, color 0.3s;
}
hr{
    margin: 1rem 0;
}
h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}
ul {
    padding-left: 1.5rem;
}
.subheading{
    font-size: 1.5rem;
    color: gray;
}
.nomargin{
    margin: 0;
}
li::marker {
    content: "➔ ";
}
.responsive-table {
    margin-top: 1rem;
}
.responsive-table .row {
    border: 1px solid #ddd;
    padding: 1rem;
    background-color: #fff;
    margin-bottom: 1rem;
}
body.darkmode .responsive-table .row {
    background-color: #1e1e1e;
    border-color: #444;
}
.responsive-table .cell {
    margin-bottom: 0.5rem;
}
.responsive-table .cell strong {
    display: inline-block;
    width: 100px;
}
.responsive-table .headers {
    display: none;
}
.price-note {
    margin-top: 1rem;
    font-style: italic;
}
@media(min-width: 768px) {
    button{
        font-family: "DM Sans", sans-serif;
    }
    hr {
        margin: 2.5rem 0;
   }
    .responsive-table {
        display: table;
        width: 100%;
        border-collapse: collapse;
   }
    .responsive-table .headers {
        display: table-header-group;
   }
    .responsive-table .headers .cell {
        font-weight: bold;
        border: 1px solid #ddd;
        padding: 0.75rem;
   }
    .responsive-table .row {
        display: table-row;
        border: none;
        background-color: transparent;
        padding: 0;
        margin: 0;
   }
    .responsive-table .cell {
        display: table-cell;
        padding: 0.75rem;
        border: 1px solid #ddd;
        margin: 0;
   }
    .responsive-table .cell strong {
        display: none;
   }
}
.darkmode-toggle {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #222;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 1.6rem;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
    z-index: 1000;
}
.darkmode .darkmode-toggle {
    background-color: #eee;
    color: #111;
}