:root {
    --primary-color: #4a90e2;
    --secondary-color: #f5a623;
    --background-color: #f0f4f8;
    --text-color: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2 {
    color: var(--primary-color);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.faq-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-section:hover {
    transform: translateY(-5px);
}

.faq-section h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

.faq-section p, .faq-section a {
    color: #333;
}

.faq-section a {
    color: #3367d6;
    text-decoration: none;
}

.faq-section a:hover {
    text-decoration: underline;
}

.faq-section ul {
    list-style: none;
    padding: 0;
}

.faq-section ul li {
    background: #f1f1f1;
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-scroll-container {
    width: 100%;
    overflow-x: auto;
}

.image-scroll-fix-width {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.image-scroll-fix-width img {
    flex: 0 0 auto;
    width: 320px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-scroll-fix-width img:hover {
    transform: scale(1.05);
}

.image-scroll-fix-height {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.image-scroll-fix-height img {
    flex: 0 0 auto;
    width: auto;
    height: 320px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-scroll-fix-height img:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
}

.image-scroll-container::-webkit-scrollbar {
    display: none;
}

.image-scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.download-container {
    display: flex;
    justify-content: flex-end;
}

.download-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: var(--secondary-color);
}

.active {
    font-weight: bold;
}