* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 24px;
    background-color: #f2f4f6;
    color: #2c2c2c;
    line-height: 1.6;
}

h1 {
    color: #00878a;
    font-size: 2rem;
    margin-bottom: 6px;
}

h1 + p {
    color: #555;
    margin-bottom: 20px;
}

h2 {
    color: #1a1a1a;
    font-size: 1.25rem;
    border-bottom: 2px solid #00878a;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

a {
    color: #00878a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

nav {
    background-color: #00878a;
    padding: 0;
    margin: 0 -24px 28px;
    display: flex;
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

nav a:hover,
nav a:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}

.section {
    background-color: #fff;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table th {
    background-color: #00878a;
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

table th:first-child {
    border-radius: 6px 0 0 0;
}

table th:last-child {
    border-radius: 0 6px 0 0;
}

table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.95rem;
}

table tr:nth-child(even) {
    background-color: #f8fafa;
}

table tr:last-child td {
    border-bottom: none;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.section p:first-of-type {
    color: #444;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

footer a {
    color: #00878a;
}

        /*https://blog.logto.io/css-only-infinite-scroll - I USED THIS DUDES'S LINK TO DO MY CAROUSEL */
        /*https://blog.logto.io/css-only-infinite-scroll - I USED THIS DUDES'S LINK TO DO MY CAROUSEL */
        /*https://blog.logto.io/css-only-infinite-scroll - I USED THIS DUDES'S LINK TO DO MY CAROUSEL */
        /*https://blog.logto.io/css-only-infinite-scroll - I USED THIS DUDES'S LINK TO DO MY CAROUSEL */
        /*https://blog.logto.io/css-only-infinite-scroll - I USED THIS DUDES'S LINK TO DO MY CAROUSEL */

.carousel {
    margin: 0 auto 24px;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
}

.carousel > * {
    flex: 0 0 100%;
}

.carousel:hover .carousel-group {
    animation-play-state: paused;
}

.carousel-group {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    will-change: transform;
    animation: carousel-scroll 20s linear infinite;
}

.carousel-card {
    flex: 0 0 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}