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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

.header {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: fadeInDown 0.6s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content {
    animation: slideUp 1s ease;
    text-align: left;
}

.hero-image {
    animation: fadeInRight 1s ease 0.3s both;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    display: block;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.article-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.2s both;
}

.article-card {
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    animation: slideInLeft 0.8s ease;
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-image:hover img {
    transform: scale(1.05);
}

.article-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.article-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.article-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.article-text {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.article-text p {
    margin-bottom: 1rem;
}

.article-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}

.article-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.progress-section {
    padding: 4rem 0;
    background: var(--bg-light);
    animation: fadeIn 0.8s ease 0.4s both;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.progress-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.progress-item {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: slideInRight 0.8s ease;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.progress-value {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.progress-bar {
    width: 100%;
    height: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #5dade2);
    border-radius: 15px;
    width: 0;
    transition: width 1.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.quote-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.6s both;
}

.quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.quote {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow);
    margin: 0;
    animation: slideInUp 0.8s ease;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.quote-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.quote-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gallery-section {
    padding: 4rem 0;
    background: var(--bg-light);
    animation: fadeIn 0.8s ease 0.8s both;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    animation: fadeIn 0.8s ease 1s both;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie:first-child {
    background: var(--accent-color);
    color: white;
}

.btn-cookie:first-child:hover {
    background: #2980b9;
}

.btn-cookie:last-child {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie:last-child:hover {
    background: white;
    color: var(--accent-color);
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.features-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.2s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    border-top: 4px solid var(--accent-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 10px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

.accordion-section {
    padding: 4rem 0;
    background: var(--bg-light);
    animation: fadeIn 0.8s ease 0.4s both;
}

.accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: var(--bg-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--bg-color);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-header.active {
    background: var(--accent-color);
    color: white;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 1.5rem 2rem 2rem;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.cards-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.6s both;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card-item {
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    display: flex;
    flex-direction: column;
}

.card-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card-item:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.card-detail-item {
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.highlight-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    animation: fadeIn 0.8s ease 0.8s both;
}

.highlight-content {
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-text {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: slideInUp 0.8s ease;
}

.highlight-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.highlight-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

.reviews-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.2s both;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    border-left: 4px solid var(--accent-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin: -2rem -2rem 1.5rem -2rem;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.review-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #5dade2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-rating {
    flex-shrink: 0;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-content {
    color: var(--text-light);
    line-height: 1.8;
}

.review-park {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.review-text {
    margin-bottom: 1rem;
}

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

.spoilers-section {
    padding: 4rem 0;
    background: var(--bg-light);
    animation: fadeIn 0.8s ease 0.4s both;
}

.spoilers-container {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.spoiler-item {
    background: var(--bg-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.spoiler-toggle {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--bg-color);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: var(--transition);
}

.spoiler-toggle:hover {
    background: var(--bg-light);
}

.spoiler-toggle.active {
    background: var(--accent-color);
    color: white;
}

.spoiler-title {
    flex: 1;
}

.spoiler-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.spoiler-toggle.active .spoiler-icon {
    transform: rotate(180deg);
}

.spoiler-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.spoiler-content.active {
    max-height: 2000px;
    padding: 2rem;
}

.spoiler-text {
    color: var(--text-light);
    line-height: 1.8;
}

.spoiler-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.spoiler-text h4:first-child {
    margin-top: 0;
}

.spoiler-text p {
    margin-bottom: 1rem;
}

.comparison-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.6s both;
}

.table-wrapper {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease;
}

.table-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    color: var(--text-color);
    vertical-align: top;
}

.comparison-table td strong {
    color: var(--primary-color);
    font-weight: 600;
}

.data-table-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.2s both;
}

.table-container {
    margin-top: 2rem;
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color);
    min-width: 800px;
}

.data-table thead {
    background: var(--primary-color);
    color: white;
}

.data-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.data-table tbody tr:hover {
    background: var(--bg-light);
}

.data-table tbody tr:last-child {
    border-bottom: none;
}

.data-table td {
    padding: 1.25rem 1rem;
    color: var(--text-color);
    vertical-align: top;
}

.data-table td strong {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-section {
    padding: 4rem 0;
    background: var(--bg-light);
    animation: fadeIn 0.8s ease 0.4s both;
}

.modal-triggers {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-trigger {
    min-width: 250px;
}

.lists-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.6s both;
}

.lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.list-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease;
    border-top: 4px solid var(--accent-color);
}

.list-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.tabular-section {
    padding: 4rem 0;
    background: var(--bg-light);
    animation: fadeIn 0.8s ease 0.8s both;
}

.tabular-container {
    margin-top: 2rem;
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tabular-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color);
    min-width: 900px;
}

.tabular-table thead {
    background: var(--primary-color);
    color: white;
}

.tabular-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.tabular-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.tabular-table tbody tr:hover {
    background: var(--bg-light);
}

.tabular-table tbody tr:last-child {
    border-bottom: none;
}

.tabular-table td {
    padding: 1.25rem 1rem;
    color: var(--text-color);
    vertical-align: top;
}

.tabular-table td strong {
    color: var(--primary-color);
    font-weight: 600;
}

.table-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: block;
}

.modal-content {
    background: var(--bg-color);
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10001;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    flex: 1;
    padding-right: 1rem;
    word-wrap: break-word;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.modal-body h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.2s both;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    border-top: 4px solid var(--accent-color);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    border-radius: 50%;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.tabs-section {
    padding: 4rem 0;
    background: var(--bg-light);
    animation: fadeIn 0.8s ease 0.4s both;
}

.tabs-container {
    max-width: 900px;
    margin: 3rem auto 0;
    background: var(--bg-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-light);
}

.tab-button {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab-button:hover {
    background: var(--bg-color);
    color: var(--accent-color);
}

.tab-button.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    background: var(--bg-color);
}

.tabs-content {
    padding: 0;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

.contact-form-wrapper {
    padding: 2.5rem;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-color);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.tab-content-wrapper {
    padding: 2.5rem;
}

.tab-content-wrapper h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.anfahrt-content h4,
.oeffnungszeiten-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.anfahrt-content h4:first-child {
    margin-top: 0;
}

.anfahrt-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
    margin-bottom: 1rem;
}

.hours-item .day {
    font-weight: 600;
    color: var(--primary-color);
}

.hours-item .time {
    color: var(--text-light);
}

.hours-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 5px;
    border-left: 4px solid var(--accent-color);
}

.hours-note p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-map-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease 0.6s both;
}

.contact-map {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.popup-section {
    padding: 4rem 0;
    background: var(--bg-light);
    animation: fadeIn 0.8s ease 0.8s both;
}

.popup-trigger-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.popup-trigger-wrapper h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.popup-trigger-wrapper p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.popup-trigger-wrapper .btn-secondary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.popup-trigger-wrapper .btn-secondary:hover {
    background: var(--accent-color);
    color: white;
}

.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: block;
}

.popup-content {
    background: var(--bg-color);
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10001;
    animation: slideUp 0.3s ease;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.document-section {
    padding: 4rem 0;
    background: var(--bg-color);
    animation: fadeIn 0.8s ease;
}

.document-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: slideUp 0.8s ease;
}

.document-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.document-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.document-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.document-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.document-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.document-content ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.document-content ul li {
    margin-bottom: 0.5rem;
}

.document-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.document-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.thank-you-section {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    animation: fadeIn 0.8s ease;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-color);
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: slideUp 0.8s ease;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.thank-you-content .btn {
    margin-top: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        gap: 1rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .article-image {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .quote {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie {
        flex: 1;
        max-width: 200px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 2rem;
    }

    .accordion-header {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-content {
        padding: 0 1.5rem;
    }

    .accordion-content.active {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        padding: 2rem;
    }

    .highlight-title {
        font-size: 1.75rem;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .comparison-table,
    .data-table,
    .tabular-table {
        display: block;
        overflow-x: visible;
    }

    .comparison-table thead,
    .data-table thead,
    .tabular-table thead {
        display: none;
    }

    .comparison-table tbody,
    .data-table tbody,
    .tabular-table tbody {
        display: block;
    }

    .comparison-table tbody tr,
    .data-table tbody tr,
    .tabular-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 0;
        background: var(--bg-color);
        box-shadow: var(--shadow);
    }

    .comparison-table tbody tr:last-child,
    .data-table tbody tr:last-child,
    .tabular-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .comparison-table td,
    .data-table td,
    .tabular-table td {
        display: block;
        padding: 1rem;
        text-align: right;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        padding-left: 50%;
        word-break: break-word;
    }

    .comparison-table td:last-child,
    .data-table td:last-child,
    .tabular-table td:last-child {
        border-bottom: none;
    }

    .comparison-table td::before,
    .data-table td::before,
    .tabular-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 45%;
        text-align: left;
        font-weight: 600;
        color: var(--primary-color);
    }

    .comparison-table td strong,
    .data-table td strong,
    .tabular-table td strong {
        display: block;
        margin-bottom: 0.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
    }

    .review-rating {
        align-self: flex-start;
    }

    .spoiler-toggle {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .spoiler-content.active {
        padding: 1.5rem;
    }

    .modal-triggers {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-trigger {
        width: 100%;
        min-width: auto;
    }

    .lists-grid {
        grid-template-columns: 1fr;
    }

    .list-card {
        padding: 2rem;
    }

    .modal.active {
        padding: 0;
        align-items: flex-start;
    }

    .modal-content {
        margin: 0;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .modal-header {
        padding: 1rem 1.5rem;
        border-radius: 0;
    }

    .modal-header h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 1.8rem;
    }

    .modal-body {
        padding: 1.5rem;
        flex: 1;
        overflow-y: auto;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        flex-direction: column;
    }

    .tab-button {
        border-bottom: 1px solid var(--border-color);
        border-right: none;
    }

    .tab-button.active {
        border-bottom-color: var(--border-color);
        border-left: 3px solid var(--accent-color);
    }

    .contact-form-wrapper,
    .tab-content-wrapper {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .popup-trigger-wrapper {
        padding: 2rem 1.5rem;
    }

    .popup-content {
        margin: 1rem;
        max-height: 85vh;
    }

    .popup-header {
        padding: 1.5rem;
    }

    .popup-body {
        padding: 1.5rem;
    }

    .document-content {
        padding: 2rem 1.5rem;
    }

    .document-content h1 {
        font-size: 2rem;
    }

    .document-content h2 {
        font-size: 1.5rem;
    }

    .document-content h3 {
        font-size: 1.2rem;
    }

    .thank-you-content {
        padding: 3rem 2rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .article-content {
        padding: 1.5rem;
    }

    .progress-item {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table td,
    .data-table td,
    .tabular-table td {
        padding-left: 40%;
        font-size: 0.9rem;
    }

    .comparison-table td::before,
    .data-table td::before,
    .tabular-table td::before {
        width: 35%;
        font-size: 0.85rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-image {
        height: 150px;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }

    .spoiler-text h4 {
        font-size: 1.1rem;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .contact-form-wrapper h3,
    .tab-content-wrapper h3 {
        font-size: 1.5rem;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

