:root {
    --cream: #FFF7ED;
    --teal: #1F6F6B;
    --orange: #E96D47;
    --peach: #F6A65A;
    --border: #E9E2D6;
    --body: #4B4B4B
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--teal);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px
}

.center {
    text-align: center
}

.hero {
    padding: 96px 0 40px
}

h1 {
    font-size: 48px;
    margin: 8px 0 12px;
    letter-spacing: -0.02em
}

h2 {
    font-size: 28px;
    margin: 0 0 24px
}

.lead {
    color: var(--orange);
    font-weight: 700;
    margin: 0 0 10px
}

.body {
    color: var(--body);
    font-size: 17px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 24px
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 16px;
    background: linear-gradient(90deg, var(--orange), var(--peach));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08)
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px
}

@media(min-width:800px) {
    .grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.card {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: saturate(120%) blur(4px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .03)
}

.card h3 {
    margin: 0 0 6px;
    font-size: 20px
}

.card p {
    color: var(--body);
    margin: 0
}

.section {
    padding: 56px 0
}

footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--body)
}

footer a {
    color: var(--teal);
    text-decoration: none
}

footer a:hover {
    color: var(--orange)
}

.logo {
    height: 96px;
    margin: 0 auto 16px;
    display: block
}

/* Carousel (fixed height 1200px, rounded) */
.carousel {
    position: relative;
    margin: 24px auto 0;
    max-width: 300px;
    height: 600px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    overflow: hidden
}

.track {
    display: flex;
    height: 100%;
    transition: transform .45s ease;
    will-change: transform
}

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

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 111, 107, .9);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    display: grid;
    place-items: center
}

.nav:hover {
    opacity: .9
}

.nav.prev {
    left: 12px
}

.nav.next {
    right: 12px
}

@media(max-width:640px) {
    .carousel {
        max-width: 420px;
        height: 900px
    }

    .nav {
        width: 36px;
        height: 36px
    }
}

/* Form (fix widths, spacing, borders) */
.form {
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    max-width: 640px;
    margin: 0 auto
}

.form .row {
    display: grid;
    gap: 16px
}

@media(min-width:720px) {
    .form .row {
        grid-template-columns: 1fr 1fr
    }
}

label {
    font-size: 14px;
    color: var(--body);
    display: block;
    margin: 0 0 6px;
    text-align: left
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    font-size: 15px
}

input:focus,
textarea:focus {
    border-color: var(--teal)
}

.form .field {
    margin-bottom: 16px
}

.form .actions {
    display: flex;
    justify-content: center;
    margin-top: 8px
}

.helper {
    color: var(--body);
    font-size: 12px;
    text-align: center;
    margin-top: 6px
}

/* Lift screenshots upward a bit inside carousel */
.slide img {
    object-fit: contain;
    margin-top: -15px; /* adjust this number until Skip shows fully */
}