:root {
    --sw: 1;
    --sh: 1;
    --primary-color: #13153a;
    --text-color: #333;
    --cta-color: #a41815;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.YC {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header */
.pC {
    height: 10%;
    background-color: var(--primary-color);
    color: white;
}

.qC {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.qC h1 {
    font-size: 24px;
    font-weight: bold;
}

/* Carousel */
#page-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.oC {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
}

.glide {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.glide__track {
    flex: 1;
    overflow: hidden;
    height: 100%;
}

.glide__slides {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
}

.glide__slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mC {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    height: 70vh;
    min-height: 200px;
    max-height: 70vh;
    overflow-y: hidden;
}

.mC h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mC p {
    font-size: 16px;
    line-height: 1.5;
}

/* Dots Navigation */
.glide__bullets {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.glide__bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.glide__bullet--active {
    background-color: var(--cta-color);
}

/* CTA Button */
.s-cta-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px 10px 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.ZC {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 8px;
    background-color: var(--cta-color);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
