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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
   
    line-height: 1.6;
    padding-bottom: 80px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 20px;
}

a.btn, a.btn:link, a.btn:visited, a.btn:hover, a.btn:active {
    text-decoration: none;
}

a.btn-primary, a.btn-primary:link, a.btn-primary:visited, a.btn-primary:hover, a.btn-primary:active {
    color: #fff;
}

a.btn-secondary, a.btn-secondary:link, a.btn-secondary:visited, a.btn-secondary:hover, a.btn-secondary:active {
    color: #333;
}

.label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.input {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s;
}

.input:focus {
    outline: none;
    border-color: #007bff;
}

.input::placeholder {
    color: #999;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.image-grid {
    display: flex;
    gap: 10px;
}

.grid-item {
    flex: 1;
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.button-group {
    display: flex;
    gap: 12px;
}

.btn {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn:active {
    opacity: 0.8;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-icon {
    font-size: 18px;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 10px;
    padding: 5px 0;
}

.scroll-wrapper {
    display: inline-flex;
    gap: 10px;
    padding: 5px 0;
    animation: scroll 20s linear infinite;
}

.scroll-wrapper:hover {
    animation-play-state: paused;
}

.scroll-item {
    flex-shrink: 0;
}

.scroll-item img {
    width: 140px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.text-content {
    /*padding: 15px;*/
    background-color: #f8f9fa;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 10px;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    left: 15px;
    right: 15px;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1000;
}

.floating-btn .btn {
    width: 100%;
    height: 52px;
    font-size: 17px;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.35);
    border-radius: 12px;
}

.floating-btn .btn-icon {
    font-size: 20px;
}

.container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.main-image img {
    max-height: 400px;
}
