:root {
    --dark-background: #202020;
    --light-text: #e4e4e4;

    --light-background: #f0f0f0;
    --dark-text: #202020;

    --light-grey: #ccd0d9;
    --med-grey: #8c8c8c;
    --dark-grey: #595959;
    --yellow: #f2cf1d;
}

body, html {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.section-dark {
    margin: 0px;
    background-color: var(--dark-background);
    color: var(--light-text);
}

.section-white {
    margin: 0px;
    background-color: var(--light-background);
    color: var(--dark-text);
}

 .container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px;
    gap: 20px;
}

.box {
    flex: 1;
    margin: 0px; /*spacing between the boxes */
    padding: 0px; /* dynamic padding that is a percentage of the box's current width */
}

.box-bottom-parent{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes text to the bottom */
    padding: 10px;
}

.box-bottom-child {
        margin-top: auto;
}

.image-box {
    flex: 1;
    position: relative;
    width: 100%;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    font-size: 16px;
}

.text-box {
    width: 100%;
    padding: 10%;
    font-size: 16px;
    text-align: center;
}

.floating-box {
    position: absolute;
    display: flex;
    height: 100vh;
    top: 10%;
    left: 5%;
    width: 60%;
    height: 10%;
    display: flex;
    align-items: center;
}

.title-spacing {
    padding-left: 40px;
    padding-right: 40px;
}

.text-box-spacing {
    padding-top: 25px;
    padding-left: 40px;
    padding-right: 40px;
}

.h0 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(40px, 5vw, 80px);
    font-variant: small-caps;
    font-weight: 600;
}

.h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(20px, 5vw, 48px);
    font-variant: small-caps;
    font-weight: 600;
}

.h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(16px, 5vw, 42px);
    font-variant: small-caps;
    font-weight: 600;
}

.h2-subtitle {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(12px, 5vw, 24px);
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
}

.h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(14px, 5vw, 36px);
    font-variant: small-caps;
    font-weight: 600;
}

.h4 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(12px, 5vw, 30px);
    font-variant: small-caps;
    font-weight: 600;
}

.h5 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(10px, 5vw, 20px);
    text-transform: uppercase;
    font-weight: 600;
}

.text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16pt;
}

.bright-text {
    color: white;
}

.med-grey-text {
    color: var(--med-grey);
}

.centered-text {
    text-align: center;
}

.email-button {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--med-grey);
    color: white;
    text-decoration: none;
    font-size: 24px;
    border-radius: 0px;
}

.email-button:hover {
    background-color: var(--dark-grey);
    color: var(--yellow);
}

.svctable {
    width: 90%;
    border-collapse: collapse;
}

.svctable-number {
    font-size: 32px;
    font-weight: bold;
    width: 50px;
    text-align: center;
    vertical-align: top;
}

.svctable-content h1 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    vertical-align: top;
    margin: 0px;
}

.svctable-content p {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 5px;
}

.responsive-image {
    max-width: 10%;
    height: auto;
    vertical-align: bottom;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .box {
        width: (100%-10px); /* Stacks the boxes on smaller screens */
        margin-bottom: 10px;
    }

    .container {
        flex-direction: column;
    }
}