
* {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fafafa;
    color: #222;
    margin: 0;
    padding: 20px;
}

.card-slider {
    position: relative;
    margin: 25px auto;
    max-width: 320px;
    overflow: hidden;
    border-radius: 12px;
}

.slides {
    display: flex;
    transition: transform 0.3s ease;
}

.slides img {
    width: 100%;
    flex: 0 0 100%;
    display: block;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.slider-button.prev {
    left: 10px;
}

.slider-button.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.cost-explanation {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: -10px 0 25px;
    line-height: 1.5;
}

.dot.active {
    background: white;
}

.container {
    max-width: 500px;
    margin: 30px auto;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

h1 {
    margin-top: 0;
    text-align: center;
}

.intro {
    text-align: center;
    line-height: 1.5;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-top: 18px;
    font-weight: 600;
}

input,
textarea,
select,
button {
    width: 100%;
    font-size: 16px;
    padding: 12px;
    margin-top: 8px;
    border-radius: 8px;
}

input,
textarea,
select {
    border: 1px solid #ccc;
    background: white;
}

textarea {
    resize: vertical;
}

button {
    margin-top: 25px;
    cursor: pointer;
    background: #222;
    color: white;
    border: none;
    font-weight: 600;
    padding: 14px;
}

button:hover {
    background: #444;
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        margin: 10px auto;
        padding: 20px;
        border-radius: 8px;
    }
}

.thank-you {
    text-align: center;
}

.thank-you p {
    line-height: 1.5;
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.footer a {
    color: inherit;
    text-decoration: underline;
}

.footer a:hover {
    color: #222;
}

.price {
    text-align: center;
    font-size: 20px;
    margin: 20px 0;
}

.order-notice {
    margin-top: 25px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    line-height: 1.5;
    font-size: 15px;
}

.order-notice > strong {
    display: block;
    margin-bottom: 8px;
}

.thank-you-image {
    display: block;
    width: 250px;
    max-width: 80%;
    height: auto;
    margin: 30px auto 10px;
    border-radius: 12px;
}