<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"&gt;&lt;path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23grid)"/&gt;&lt;/svg&gt;');
    opacity: 0.3;
}

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

.hero-content {
    max-width: 600px;
}
        .hero-content {
            padding: 1rem;
            text-align: center; /* Diese Zeile hinzufÃ¼gen */
        }

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
}

.hero-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.hero-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hero-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.hero-small {
    padding: 6rem 0 3rem;
    text-align: center;
}

.hero-small .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-breadcrumb {
    margin-top: 1rem;
    opacity: 0.8;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    text-decoration: underline;
}

/* App Promotion Section */
.app-promotion-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23dots)"/&gt;&lt;/svg&gt;');
    opacity: 0.3;
}

.app-promotion-banner {
    position: relative;
    z-index: 2;
}

.app-banner-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-banner-left {
    max-width: 600px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.app-banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-text {
    color: #ffeb3b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.app-banner-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.feature-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.app-banner-right {
    display: flex;
    justify-content: center;
}

.app-price-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.price-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.app-cta-button {
    background: white;
    color: #ff6b6b;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 100%;
    margin-bottom: 1rem;
}

.app-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-icon {
    font-size: 1.1rem;
}

.app-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.9;
    font-size: 0.85rem;
}

.guarantee-icon {
    font-size: 1rem;
}

/* Premium E-Ticket Section - Completely Redesigned */
.premium-service-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.premium-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison-side {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.self-service {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 2px solid #fca5a5;
}

.premium-serv {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd); /* helles Himmelblau */
    border: 2px solid #60a5fa; /* krÃ¤ftigeres Blau */
}
.comparison-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.comparison-icon {
    font-size: 2rem;
}

.comparison-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.time-indicator {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.time-indicator.stress {
    background: #ef4444;
    color: white;
}

.time-indicator.fast {
    background: #10b981;
    color: white;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comparison-list li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #374151;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.service-feature .feature-icon {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.feature-content h4 {
    margin: 0 0 0.3rem 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.premium-sidebar {
    position: sticky;
    top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #667eea;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.price-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.3rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #374151;
}

.check-icon {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 2rem;
    padding: 0.8rem;
    background: #f9fafb;
    border-radius: 8px;
}

.premium-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
    margin-bottom: 1rem;
}

.premium-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-text {
    flex: 1;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.premium-cta-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #e1e5e9;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* E-Ticket Section */
.eticket-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eticket-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.benefit-item h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.benefit-item p {
    margin: 0;
    color: #6b7280;
    line-height: 1.5;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.3rem;
}

.info-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Excursions Grid */
.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.excursion-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.excursion-card:hover {
    transform: translateY(-5px);
}

.excursion-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.excursion-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.excursion-content {
    padding: 1.5rem;
}

.excursion-content h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.3rem;
}

.excursion-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.excursion-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.duration {
    color: #6b7280;
    font-size: 0.9rem;
}

.price {
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
}

.excursions-cta {
    text-align: center;
}

.excursions-cta p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}
/* Testimonials */
.testimonials {
    background: #f8fafc;
    padding: 80px 0;
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2563eb;
    font-weight: bold;
    line-height: 1;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.3rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blog-content h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #667eea;
}

.blog-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.blog-cta {
    text-align: center;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.contact-item h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0 0 0.3rem 0;
    color: #374151;
    font-weight: 500;
}

.response-time {
    color: #6b7280;
    font-size: 0.9rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #667eea;
    font-size: 1.2rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Quick Facts */
.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quick-fact {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.quick-fact:hover {
    transform: translateY(-5px);
}

.quick-fact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.quick-fact h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.2rem;
}

.quick-fact p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-card h3 {
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-size: 1.3rem;
}

.content-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-card ul {
    color: #6b7280;
    line-height: 1.6;
    padding-left: 1.5rem;
}

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

/* Exchange Rate */
.exchange-rate {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
}

.rate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.currency {
    color: #667eea;
}

.equals {
    color: #6b7280;
}

.amount {
    color: #1f2937;
}

.rate-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Currency Info */
.currency-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.currency-type h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.currency-type ul {
    list-style: none;
    padding: 0;
}

.currency-type li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.currency-type li:last-child {
    border-bottom: none;
}

/* Exchange Options */
.exchange-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.exchange-option {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e5e7eb;
}

.exchange-option.best {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

.exchange-option.good {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.exchange-option.okay {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #ffffff);
}

.exchange-option.avoid {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2, #ffffff);
}

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

.option-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.3rem;
}

.rating {
    font-size: 1.2rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.pros h4 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cons h4 {
    color: #ef4444;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 0.3rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.option-tip {
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;
    font-size: 0.9rem;
    color: #374151;
}

.warning {
    background: rgba(239, 68, 68, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ef4444;
}

.warning h4 {
    color: #ef4444;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.warning li {
    padding: 0.3rem 0;
    color: #374151;
    font-size: 0.9rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.card-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-info.accepted {
    border-left: 4px solid #10b981;
}

.card-info.limited {
    border-left: 4px solid #f59e0b;
}

.card-info h3 {
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-size: 1.3rem;
}

.card-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.card-icon {
    font-size: 1.5rem;
    color: #667eea;
}

.card-type strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.3rem;
}

.card-type p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Card Tips */
.card-tips {
    margin-top: 3rem;
}

.card-tips h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    font-size: 1.5rem;
}

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

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.tip-card h4 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.2rem;
}

.tip-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-card li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
}

.tip-card li:last-child {
    border-bottom: none;
}

/* Practical Tips */
.practical-tips {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tip-category h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkbox {
    font-size: 1.2rem;
    color: #10b981;
}

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

.advice-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.advice-card h4 {
    margin-bottom: 1rem;
    color: #667eea;
    font-size: 1.2rem;
}

.advice-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advice-card li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
}

.advice-card li:last-child {
    border-bottom: none;
}

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

.mistake-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ef4444;
}

.mistake-icon {
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.mistake-card h4 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.1rem;
}

.mistake-card p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul {
    color: #6b7280;
    line-height: 1.6;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}
/* Einreise &amp; Visa Page Specific Styles */

/* Entry Requirements */
.entry-requirements {
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-status {
    margin-bottom: 3rem;
}

.requirements-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.requirement-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.requirement-category.essential {
    border-left: 5px solid #dc2626;
}

.requirement-category.recommended {
    border-left: 5px solid #f59e0b;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.requirement-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.requirement-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.requirement-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.requirement-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

.requirement-details p:last-child {
    margin-bottom: 0;
}

.requirement-details strong {
    color: #1f2937;
}

.entry-process {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.entry-process h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Tourist Card */
.tourist-card-info {
    max-width: 1000px;
    margin: 0 auto;
}

.card-overview {
    margin-bottom: 3rem;
}

.overview-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.overview-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.card-options {
    margin-bottom: 3rem;
}

.card-options h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.purchase-option {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.purchase-option.recommended {
    border-left: 5px solid #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.purchase-option.standard {
    border-left: 5px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

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

.option-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.option-badge {
    background: #059669;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.purchase-option.standard .option-badge {
    background: #2563eb;
}

.option-content {
    margin-top: 1rem;
}

.option-details p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.5;
}

.option-details strong {
    color: #1f2937;
}

.option-details ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.option-details li {
    padding: 0.25rem 0;
    color: #374151;
}

.card-important-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.card-important-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.important-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
}

.tip-item.critical {
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
    border: 1px solid #fecaca;
}

.tip-item.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
    border: 1px solid #fed7aa;
}

.tip-item.info {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border: 1px solid #bfdbfe;
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tip-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.tip-content p {
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

/* Stay Duration */
.stay-duration {
    max-width: 1000px;
    margin: 0 auto;
}

.duration-overview {
    margin-bottom: 3rem;
}

.duration-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.duration-card.standard {
    border-left: 5px solid #2563eb;
}

.duration-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.duration-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: left;
}

.duration-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.duration-item strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
}

.extension-info {
    margin-bottom: 3rem;
}

.extension-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.extension-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.extension-option {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    border-left: 5px solid #2563eb;
}

.extension-option.alternative {
    border-left-color: #f59e0b;
}

.extension-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.extension-details p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.5;
}

.extension-details strong {
    color: #1f2937;
}

.extension-details h5 {
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #1f2937;
}

.extension-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.extension-details li {
    padding: 0.25rem 0;
    color: #374151;
}

.warning-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.warning-box p {
    color: #92400e;
    margin: 0;
    font-size: 0.9rem;
}

.overstay-warning {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.warning-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.warning-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dc2626;
}

.warning-content p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

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

.warning-content strong {
    color: #1f2937;
}

/* Customs Info */
.customs-info {
    max-width: 1000px;
    margin: 0 auto;
}

.customs-overview {
    margin-bottom: 3rem;
}

.overview-intro {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.overview-intro h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.overview-intro p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.customs-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.customs-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.customs-category.allowed {
    border-left: 5px solid #059669;
}

.customs-category.restricted {
    border-left: 5px solid #f59e0b;
}

.customs-category.prohibited {
    border-left: 5px solid #dc2626;
}

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

.customs-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.item-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-content li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.customs-tips {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.customs-tips h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

/* Special Regulations */
.special-regulations {
    max-width: 1000px;
    margin: 0 auto;
}

.regulation-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.regulation-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.regulation-category.health {
    border-left: 5px solid #059669;
}

.regulation-category.minors {
    border-left: 5px solid #f59e0b;
}

.regulation-category.business {
    border-left: 5px solid #2563eb;
}

.regulation-category.transit {
    border-left: 5px solid #6b7280;
}

.regulation-content {
    margin-top: 1rem;
}

.regulation-item {
    margin-bottom: 2rem;
}

.regulation-item:last-child {
    margin-bottom: 0;
}

.regulation-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.regulation-item p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.regulation-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.regulation-item li {
    padding: 0.25rem 0;
    color: #374151;
}

.important-contacts {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.important-contacts h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.contact-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: #1f2937;
}
/* Blog-specific styles */
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-featured-image {
    margin-bottom: 3rem;
    grid-column: 1 / -1;
}

.image-placeholder {
    background: #f8fafc;
    border: 2px dashed #d1d5db;
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    color: #6b7280;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 3rem;
}

.blog-content {
    line-height: 1.8;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #2563eb;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: #374151;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.7;
}

/* Info boxes */
.info-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.info-box.highlight {
    border-left: 5px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.info-box h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.quick-facts-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.quick-facts-list li {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Currency overview */
.currency-overview {
    margin: 2rem 0;
}

.currency-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.currency-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.exchange-rates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.from {
    color: #2563eb;
}

.arrow {
    color: #6b7280;
    font-size: 1.5rem;
}

.to {
    color: #059669;
}

.rate-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #92400e;
    text-align: center;
}

/* Tip boxes */
.tip-box {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.tip-box h4 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.tip-box p {
    color: #1e40af;
    margin: 0;
}

/* Exchange options */
.exchange-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.exchange-option {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.exchange-option.best {
    border-left: 5px solid #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.exchange-option.good {
    border-left: 5px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.exchange-option.okay {
    border-left: 5px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
}

.exchange-option.avoid {
    border-left: 5px solid #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-rank {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.exchange-option.avoid .option-rank {
    background: #dc2626;
}

.option-title {
    flex: 1;
}

.option-title h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: #1f2937;
}

.rating {
    font-size: 0.9rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.pros h4, .cons h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pros li:last-child, .cons li:last-child {
    border-bottom: none;
}

.option-tip {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #1e40af;
    font-size: 0.9rem;
}

.warning-box {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
}

.warning-box h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.warning-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.warning-box li {
    padding: 0.5rem 0;
    color: #991b1b;
}

.warning-box p {
    color: #991b1b;
    margin: 0;
}

/* Cards acceptance */
.cards-acceptance {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.card-type {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.card-type.accepted {
    border-left: 5px solid #059669;
}

.card-type.limited {
    border-left: 5px solid #f59e0b;
}

.card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-info h4 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.card-info ul {
    list-style: none;
    padding: 0;
}

.card-info li {
    padding: 0.5rem 0;
    color: #374151;
}

/* Acceptance grid */
.acceptance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.acceptance-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.acceptance-item.good {
    border-left: 5px solid #059669;
}

.acceptance-item.limited {
    border-left: 5px solid #f59e0b;
}

.acceptance-item h4 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.acceptance-item ul {
    list-style: none;
    padding: 0;
}

.acceptance-item li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.acceptance-item li:last-child {
    border-bottom: none;
}

/* Checklist */
.checklist {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.checklist-item:last-child {
    border-bottom: none;
}

.check {
    font-size: 1.25rem;
    color: #059669;
}

/* Tips grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.tip-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.tip-card li:last-child {
    border-bottom: none;
}

/* Mistakes grid */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mistake-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    border-left: 5px solid #dc2626;
    text-align: center;
}

.mistake-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mistake-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dc2626;
}

.mistake-card p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Tipping guide */
.tipping-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tipping-situation {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.situation-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.situation-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.amount {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.situation-info p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Conclusion */
.conclusion-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.conclusion-box h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.strategy-list {
    list-style: none;
    padding: 0;
    counter-reset: strategy-counter;
}

.strategy-list li {
    counter-increment: strategy-counter;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding-left: 3rem;
}

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

.strategy-list li::before {
    content: counter(strategy-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.toc {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.75rem;
}

.toc a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: #1d4ed8;
}

.quick-tips {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-tip {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #2563eb;
    font-size: 0.9rem;
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 0.75rem;
}

.related-links a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-links a:hover {
    color: #1d4ed8;
}

/* Blog meta */
.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.blog-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Responsive design for blog */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cards-acceptance {
        grid-template-columns: 1fr;
    }
    
    .acceptance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .mistakes-grid {
        grid-template-columns: 1fr;
    }
    
    .tipping-guide {
        grid-template-columns: 1fr;
    }
    
    .quick-facts-list {
        grid-template-columns: 1fr;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .exchange-rates {
        gap: 0.5rem;
    }
    
    .rate-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vanilla:hover {
  filter: drop-shadow(0 0 2em #f7df1eaa);
}

.card {
  padding: 2em;
}

.read-the-docs {
  color: #888;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    display: block;
    place-items: unset;
    min-height: unset;
}

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

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-small {
    padding: 100px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/&gt;&lt;circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/&gt;&lt;circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23grain)"/&gt;&lt;/svg&gt;');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.feature-icon {
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hero-card li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.card-highlight {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
}

.hero-breadcrumb {
    margin-top: 1rem;
    opacity: 0.8;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
}

/* Form Styles */
.e-ticket-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    margin-top: 4rem;
    border-radius: 20px;
}

.form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.info-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #1d4ed8;
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-image {
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tour-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tour-feature {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.blog-card.featured .blog-image {
    height: auto;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 1.4;
}

.blog-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.blog-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #1d4ed8;
}

.blog-cta {
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header .service-icon {
    font-size: 2.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.service-item p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: #f8fafc;
    padding: 80px 0;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2563eb;
    font-weight: bold;
    line-height: 1;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Premium E-Ticket Service */
.premium-service {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    border: 2px solid #60a5fa;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="premium-grain" width="100" height="100" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/&gt;&lt;circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23premium-grain)"/&gt;&lt;/svg&gt;');
    opacity: 0.3;
    z-index: 0;
}
.premium-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.premium-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fbbf24;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.premium-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.premium-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.premium-price {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.price-main {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.price-details {
    opacity: 0.9;
    margin-bottom: 1rem;
}

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

.premium-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Animations */
@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);
    }
}

/* Geld &amp; WÃ¤hrung Page Specific Styles */

/* Quick Facts Grid */
.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.quick-fact {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.quick-fact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quick-fact h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.quick-fact p {
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.content-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

/* Exchange Rate Display */
.exchange-rate {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.rate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.rate-item:last-child {
    margin-bottom: 0;
}

.currency {
    color: #2563eb;
}

.equals {
    color: #6b7280;
}

.amount {
    color: #059669;
}

.rate-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #92400e;
}

/* Currency Info */
.currency-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.currency-type h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.currency-type ul {
    list-style: none;
    padding: 0;
}

.currency-type li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.currency-type li:last-child {
    border-bottom: none;
}

/* Exchange Options */
.exchange-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.exchange-option {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #e5e7eb;
}

.exchange-option.best {
    border-left-color: #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.exchange-option.good {
    border-left-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.exchange-option.okay {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
}

.exchange-option.avoid {
    border-left-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
}

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

.option-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.rating {
    font-size: 1.1rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.pros h4, .cons h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    padding: 0.25rem 0;
    color: #374151;
}

.option-tip {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #1e40af;
    font-size: 0.9rem;
}

.warning {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    padding: 1rem;
}

.warning h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

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

.warning li {
    padding: 0.25rem 0;
    color: #991b1b;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.card-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.card-info.accepted {
    border-left: 5px solid #059669;
}

.card-info.limited {
    border-left: 5px solid #f59e0b;
}

.card-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.card-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.card-icon {
    font-size: 1.5rem;
}

.card-type strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.card-type p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Card Tips */
.card-tips {
    margin-top: 3rem;
}

.card-tips h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tip-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tip-card li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.tip-card li:last-child {
    border-bottom: none;
}

/* Tipping Guide */
.tipping-guide {
    max-width: 1000px;
    margin: 0 auto;
}

.tipping-intro {
    margin-bottom: 3rem;
}

.intro-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.intro-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.intro-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.tipping-situations h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.situation-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.situation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.situation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.situation-icon {
    font-size: 2rem;
}

.situation-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.amount {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.details p {
    margin-bottom: 0.75rem;
    color: #374151;
    line-height: 1.5;
}

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

.details strong {
    color: #1f2937;
}

.tipping-tips h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.tip-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.tip-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

.tip-section li {
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    line-height: 1.5;
}

.tip-section li:last-child {
    border-bottom: none;
}

.tip-section strong {
    color: #1f2937;
}

/* Practical Tips */
.practical-tips {
    max-width: 1000px;
    margin: 0 auto;
}

.tip-category {
    margin-bottom: 3rem;
}

.tip-category h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.checklist {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checkbox {
    font-size: 1.25rem;
    color: #059669;
}

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

.advice-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.advice-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.advice-card ul {
    list-style: none;
    padding: 0;
}

.advice-card li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.advice-card li:last-child {
    border-bottom: none;
}

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

.mistake-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    border-left: 5px solid #dc2626;
    text-align: center;
}

.mistake-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mistake-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dc2626;
}

.mistake-card p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Gesundheit &amp; Sicherheit Page Specific Styles */

/* Vaccination Info */
.vaccination-info {
    max-width: 1000px;
    margin: 0 auto;
}

.vaccination-status {
    margin-bottom: 3rem;
}

.status-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.status-card.good-news {
    border-left: 5px solid #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.status-card.reassuring {
    border-left: 5px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.status-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.status-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.vaccination-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vaccination-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.vaccination-category.required {
    border-left: 5px solid #dc2626;
}

.vaccination-category.recommended {
    border-left: 5px solid #f59e0b;
}

.vaccination-category.special {
    border-left: 5px solid #6b7280;
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.category-header p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.vaccines-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vaccine-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
}

.vaccine-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.vaccine-name strong {
    color: #1f2937;
}

.vaccine-interval {
    background: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.vaccine-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.vaccination-timeline {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.vaccination-timeline h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline-marker {
    background: #2563eb;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Health Risks */
.health-risks {
    max-width: 1000px;
    margin: 0 auto;
}

.risk-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.risk-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.risk-category.high {
    border-left: 5px solid #dc2626;
}

.risk-category.medium {
    border-left: 5px solid #f59e0b;
}

.risk-category.low {
    border-left: 5px solid #059669;
}

.risk-header {
    margin-bottom: 2rem;
}

.risk-level {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.risk-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

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

.risk-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
}

.risk-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.risk-info p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.prevention {
    margin-top: 1rem;
}

.prevention strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
}

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

.prevention li {
    padding: 0.25rem 0;
    color: #374151;
}

/* Pharmacy Guide */
.pharmacy-guide {
    max-width: 1000px;
    margin: 0 auto;
}

.pharmacy-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pharmacy-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.pharmacy-category.essential {
    border-left: 5px solid #dc2626;
}

.pharmacy-category.useful {
    border-left: 5px solid #f59e0b;
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.category-header p {
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.medicine-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.medicine-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.medicine-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.medicine-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.medicine-item li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.pharmacy-tips {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.pharmacy-tips h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

/* Safety Overview */
.safety-overview {
    max-width: 1000px;
    margin: 0 auto;
}

.safety-status {
    margin-bottom: 3rem;
}

.safety-regions {
    margin-bottom: 3rem;
}

.safety-regions h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.region-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.region-card.very-safe {
    border-left: 5px solid #059669;
}

.region-card.safe {
    border-left: 5px solid #f59e0b;
}

.region-card.caution {
    border-left: 5px solid #dc2626;
}

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

.region-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.safety-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.region-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.region-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.region-content li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.region-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.safety-tips {
    margin-bottom: 3rem;
}

.safety-tips h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.safety-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.safety-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.safety-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.safety-rules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.rule-icon {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.rule-content strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.rule-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-content li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.emergency-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.emergency-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.emergency-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.emergency-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

.emergency-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.emergency-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.emergency-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.emergency-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Medical Care */
.medical-care {
    max-width: 1000px;
    margin: 0 auto;
}

.care-overview {
    margin-bottom: 3rem;
}

.care-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.care-level {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.care-level.excellent {
    border-left: 5px solid #059669;
}

.care-level.good {
    border-left: 5px solid #f59e0b;
}

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

.level-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.quality-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.level-content h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.level-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.level-content li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.cost-info {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    color: #374151;
    font-size: 0.9rem;
}

.medical-facilities {
    margin-bottom: 3rem;
}

.medical-facilities h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.facility-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.facility-header {
    margin-bottom: 1rem;
}

.facility-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.facility-location {
    color: #6b7280;
    font-size: 0.9rem;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature {
    background: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.facility-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-info {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    color: #374151;
    font-size: 0.9rem;
}

.insurance-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.insurance-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.insurance-importance {
    margin-bottom: 2rem;
}

.importance-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.importance-card.critical {
    border-left: 5px solid #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
}

.importance-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.importance-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cost-examples h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cost-examples ul {
    list-style: none;
    padding: 0;
}

.cost-examples li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.cost-examples li:last-child {
    border-bottom: none;
}

.insurance-tips h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.insurance-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Einreise &amp; Visa Page Specific Styles */

/* Entry Requirements */
.entry-requirements {
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-status {
    margin-bottom: 3rem;
}

.requirements-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.requirement-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.requirement-category.essential {
    border-left: 5px solid #dc2626;
}

.requirement-category.recommended {
    border-left: 5px solid #f59e0b;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.requirement-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.requirement-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.requirement-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.requirement-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

.requirement-details p:last-child {
    margin-bottom: 0;
}

.requirement-details strong {
    color: #1f2937;
}

.entry-process {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.entry-process h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Tourist Card */
.tourist-card-info {
    max-width: 1000px;
    margin: 0 auto;
}

.card-overview {
    margin-bottom: 3rem;
}

.overview-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.overview-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.card-options {
    margin-bottom: 3rem;
}

.card-options h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.purchase-option {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.purchase-option.recommended {
    border-left: 5px solid #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.purchase-option.standard {
    border-left: 5px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

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

.option-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.option-badge {
    background: #059669;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.purchase-option.standard .option-badge {
    background: #2563eb;
}

.option-content {
    margin-top: 1rem;
}

.option-details p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.5;
}

.option-details strong {
    color: #1f2937;
}

.option-details ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.option-details li {
    padding: 0.25rem 0;
    color: #374151;
}

.card-important-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.card-important-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.important-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
}

.tip-item.critical {
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
    border: 1px solid #fecaca;
}

.tip-item.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
    border: 1px solid #fed7aa;
}

.tip-item.info {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border: 1px solid #bfdbfe;
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tip-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.tip-content p {
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

/* Stay Duration */
.stay-duration {
    max-width: 1000px;
    margin: 0 auto;
}

.duration-overview {
    margin-bottom: 3rem;
}

.duration-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.duration-card.standard {
    border-left: 5px solid #2563eb;
}

.duration-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.duration-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: left;
}

.duration-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.duration-item strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
}

.extension-info {
    margin-bottom: 3rem;
}

.extension-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.extension-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.extension-option {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    border-left: 5px solid #2563eb;
}

.extension-option.alternative {
    border-left-color: #f59e0b;
}

.extension-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.extension-details p {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.5;
}

.extension-details strong {
    color: #1f2937;
}

.extension-details h5 {
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #1f2937;
}

.extension-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.extension-details li {
    padding: 0.25rem 0;
    color: #374151;
}

.warning-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.warning-box p {
    color: #92400e;
    margin: 0;
    font-size: 0.9rem;
}

.overstay-warning {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.warning-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.warning-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dc2626;
}

.warning-content p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

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

.warning-content strong {
    color: #1f2937;
}

/* Customs Info */
.customs-info {
    max-width: 1000px;
    margin: 0 auto;
}

.customs-overview {
    margin-bottom: 3rem;
}

.overview-intro {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.overview-intro h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.overview-intro p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.customs-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.customs-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.customs-category.allowed {
    border-left: 5px solid #059669;
}

.customs-category.restricted {
    border-left: 5px solid #f59e0b;
}

.customs-category.prohibited {
    border-left: 5px solid #dc2626;
}

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

.customs-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.item-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-content li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.customs-tips {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.customs-tips h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

/* Special Regulations */
.special-regulations {
    max-width: 1000px;
    margin: 0 auto;
}

.regulation-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.regulation-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.regulation-category.health {
    border-left: 5px solid #059669;
}

.regulation-category.minors {
    border-left: 5px solid #f59e0b;
}

.regulation-category.business {
    border-left: 5px solid #2563eb;
}

.regulation-category.transit {
    border-left: 5px solid #6b7280;
}

.regulation-content {
    margin-top: 1rem;
}

.regulation-item {
    margin-bottom: 2rem;
}

.regulation-item:last-child {
    margin-bottom: 0;
}

.regulation-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.regulation-item p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.regulation-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.regulation-item li {
    padding: 0.25rem 0;
    color: #374151;
}

.important-contacts {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.important-contacts h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.contact-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: #1f2937;
}

/* Packliste Page Specific Styles */

/* Packing Categories */
.packing-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.packing-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.packing-category.essential {
    border-left: 5px solid #dc2626;
}

.packing-category.recommended {
    border-left: 5px solid #f59e0b;
}

.packing-category.optional {
    border-left: 5px solid #6b7280;
}

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

.packing-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.packing-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.packing-item .item-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.item-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

.item-details p:last-child {
    margin-bottom: 0;
}

.item-details strong {
    color: #1f2937;
}

/* Sun Protection */
.sun-protection {
    max-width: 1000px;
    margin: 0 auto;
}

.protection-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.protection-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.protection-category.critical {
    border-left: 5px solid #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
}

.protection-category.important {
    border-left: 5px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
}

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

.protection-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.protection-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.protection-item .item-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.sun-tips {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.sun-tips h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

/* Tech Categories */
.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.tech-category.essential {
    border-left: 5px solid #dc2626;
}

.tech-category.recommended {
    border-left: 5px solid #f59e0b;
}

.tech-category.optional {
    border-left: 5px solid #6b7280;
}

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

.tech-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.tech-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.tech-item .item-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Medical Categories */
.medical-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.medical-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.medical-category.essential {
    border-left: 5px solid #dc2626;
}

.medical-category.recommended {
    border-left: 5px solid #f59e0b;
}

.medical-category.personal {
    border-left: 5px solid #2563eb;
}

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

.medical-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.medical-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.medical-item .item-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.personal-meds {
    background: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
}

.personal-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.personal-item ul {
    list-style: none;
    padding: 0;
}

.personal-item li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.personal-item li:last-child {
    border-bottom: none;
}

.medical-tips {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.medical-tips h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

/* Documents Categories */
.documents-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.documents-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.documents-category.essential {
    border-left: 5px solid #dc2626;
}

.documents-category.important {
    border-left: 5px solid #f59e0b;
}

.documents-category.recommended {
    border-left: 5px solid #059669;
}

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

.document-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.document-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.document-item .item-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Beach Categories */
.beach-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.beach-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.beach-category.essential {
    border-left: 5px solid #dc2626;
}

.beach-category.recommended {
    border-left: 5px solid #f59e0b;
}

.beach-category.watersports {
    border-left: 5px solid #2563eb;
}

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

.beach-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.beach-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.beach-item .item-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Packing Tips */
.packing-tips {
    max-width: 1000px;
    margin: 0 auto;
}

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

.tips-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.tips-category.space {
    border-left: 5px solid #2563eb;
}

.tips-category.weight {
    border-left: 5px solid #f59e0b;
}

.tips-category.organization {
    border-left: 5px solid #059669;
}

.tips-category.security {
    border-left: 5px solid #dc2626;
}

.tips-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-item .tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tip-item .tip-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.tip-item .tip-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.packing-timeline {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.packing-timeline h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline-marker {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    padding: 0.25rem 0;
    color: #374151;
}

/* Interactive Checklist */
.interactive-checklist {
    max-width: 1000px;
    margin: 0 auto;
}

.checklist-intro {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    margin-bottom: 3rem;
}

.checklist-intro p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.checklist-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.checklist-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.checklist-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.checklist-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checklist-item:hover {
    background: #f8fafc;
}

.checklist-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checklist-item input[type="checkbox"]:checked + .checkmark {
    background: #059669;
    border-color: #059669;
    color: white;
}

.item-text {
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
}

.checklist-item input[type="checkbox"]:checked ~ .item-text {
    color: #6b7280;
    text-decoration: line-through;
}

.checklist-progress {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: #dc2626;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Klima &amp; Wetter Page Specific Styles */

/* Climate Overview */
.climate-overview {
    max-width: 1000px;
    margin: 0 auto;
}

.climate-intro {
    margin-bottom: 3rem;
}

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

.characteristic-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.characteristic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.char-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.characteristic-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.char-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

.char-details p:last-child {
    margin-bottom: 0;
}

.char-details strong {
    color: #1f2937;
}

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

.region-climate {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.region-climate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

.region-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.climate-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.region-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

.region-details p:last-child {
    margin-bottom: 0;
}

.region-details strong {
    color: #1f2937;
}

/* Seasons Overview */
.seasons-overview {
    max-width: 1200px;
    margin: 0 auto;
}

.seasons-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.season-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.season-card.dry-season {
    border-left: 5px solid #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.season-card.wet-season {
    border-left: 5px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
}

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

.season-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.season-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
}

.season-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.season-badge.best {
    background: #059669;
    color: white;
}

.season-badge.alternative {
    background: #f59e0b;
    color: white;
}

.weather-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.season-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.season-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.season-details li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

/* Rain Patterns */
.rain-patterns {
    margin-top: 3rem;
}

.rain-patterns h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.rain-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.rain-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.rain-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.daily-pattern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.time-slot.morning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.time-slot.afternoon {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.time-slot.evening {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.time-slot.night {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.time {
    font-weight: 600;
    color: #1f2937;
    min-width: 100px;
}

.weather {
    font-weight: 500;
    color: #374151;
    min-width: 120px;
}

.activity {
    color: #6b7280;
    font-size: 0.9rem;
}

.rain-tips {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.rain-tips h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.rain-tips ul {
    list-style: none;
    padding: 0;
}

.rain-tips li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.rain-tips li:last-child {
    border-bottom: none;
}

.rain-tips strong {
    color: #1f2937;
}

/* Best Time Activities */
.best-time-activities {
    max-width: 1200px;
    margin: 0 auto;
}

.activity-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.activity-category {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.activity-category.beach {
    border-left: 5px solid #06b6d4;
}

.activity-category.watersports {
    border-left: 5px solid #3b82f6;
}

.activity-category.culture {
    border-left: 5px solid #8b5cf6;
}

.activity-category.adventure {
    border-left: 5px solid #10b981;
}

.activity-category.wildlife {
    border-left: 5px solid #f59e0b;
}

.activity-category.budget {
    border-left: 5px solid #ef4444;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 2rem;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.time-recommendations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.time-option {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #e5e7eb;
}

.time-option.best {
    border-left-color: #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.time-option.good {
    border-left-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.time-option.okay {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
}

.time-option.challenging {
    border-left-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
}

.time-option.expensive {
    border-left-color: #7c2d12;
    background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
}

.time-period {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.time-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.time-description p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.time-description strong {
    color: #1f2937;
}

/* Hurricane Info */
.hurricane-info {
    max-width: 1000px;
    margin: 0 auto;
}

.hurricane-overview {
    margin-bottom: 3rem;
}

.hurricane-facts h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.fact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.fact-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.fact-detail {
    color: #6b7280;
    font-size: 0.9rem;
}

.hurricane-timeline h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.timeline-months {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.month-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.month-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.month-card.low-risk {
    border-left: 5px solid #059669;
}

.month-card.medium-risk {
    border-left: 5px solid #f59e0b;
}

.month-card.high-risk {
    border-left: 5px solid #dc2626;
}

.month-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.risk-level {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    display: inline-block;
}

.month-card.low-risk .risk-level {
    background: #dcfce7;
    color: #166534;
}

.month-card.medium-risk .risk-level {
    background: #fef3c7;
    color: #92400e;
}

.month-card.high-risk .risk-level {
    background: #fee2e2;
    color: #991b1b;
}

.month-details p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.month-details p:last-child {
    margin-bottom: 0;
}

.hurricane-preparation h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.prep-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.prep-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.prep-category ul {
    list-style: none;
    padding: 0;
}

.prep-category li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.prep-category li:last-child {
    border-bottom: none;
}

.prep-category strong {
    color: #1f2937;
}

.hurricane-myths h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.myth-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.myth-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.myth-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dc2626;
}

.myth-card p {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1rem;
}

.reality {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
}

.reality-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.reality strong {
    color: #166534;
}

/* Monthly Weather */
.monthly-weather {
    max-width: 1200px;
    margin: 0 auto;
}

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

.month-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.month-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.month-card.excellent {
    border-left: 5px solid #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.month-card.very-good {
    border-left: 5px solid #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
}

.month-card.good {
    border-left: 5px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
}

.month-card.okay {
    border-left: 5px solid #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.month-card.challenging {
    border-left: 5px solid #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
}

.month-card.difficult {
    border-left: 5px solid #991b1b;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

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

.month-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.month-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.month-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 8px;
}

.temp-range, .rain-days, .humidity {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.month-description p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.month-description strong {
    color: #1f2937;
}

.month-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    background: rgba(37, 99, 235, 0.1);
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Weather Tips */
.weather-tips {
    max-width: 1000px;
    margin: 0 auto;
}

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

.tip-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.tip-category.sun-protection {
    border-left: 5px solid #f59e0b;
}

.tip-category.rain-gear {
    border-left: 5px solid #06b6d4;
}

.tip-category.clothing {
    border-left: 5px solid #8b5cf6;
}

.tip-category.hydration {
    border-left: 5px solid #10b981;
}

.weather-apps h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.app-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.app-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.app-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.app-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Sprache &amp; Kultur Page Specific Styles */

/* Language Basics */
.language-basics {
    max-width: 1200px;
    margin: 0 auto;
}

.language-intro {
    margin-bottom: 3rem;
}

.phrase-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.phrase-category {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.phrase-category.essential {
    border-left: 5px solid #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
}

.phrase-category.practical {
    border-left: 5px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
}

.phrase-category.social {
    border-left: 5px solid #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.category-header {
    margin-bottom: 2rem;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.category-header p {
    color: #6b7280;
    margin: 0;
}

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

.phrase-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.phrase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.phrase-spanish {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.phrase-german {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.phrase-pronunciation {
    font-size: 1rem;
    color: #059669;
    font-style: italic;
    margin-bottom: 1rem;
}

.phrase-context {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

.dominican-slang {
    margin-bottom: 4rem;
}

.dominican-slang h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.slang-intro {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    margin-bottom: 2rem;
}

.slang-intro p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

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

.slang-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.slang-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.slang-word {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.slang-meaning {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.slang-explanation {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

.pronunciation-tips {
    margin-bottom: 4rem;
}

.pronunciation-tips h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

/* Cultural Aspects */
.cultural-aspects {
    max-width: 1200px;
    margin: 0 auto;
}

.culture-intro {
    margin-bottom: 3rem;
}

.cultural-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cultural-category {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.cultural-category.social {
    border-left: 5px solid #2563eb;
}

.cultural-category.time {
    border-left: 5px solid #f59e0b;
}

.cultural-category.religion {
    border-left: 5px solid #8b5cf6;
}

.cultural-category.music {
    border-left: 5px solid #10b981;
}

.cultural-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.cultural-item {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.cultural-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.cultural-item .item-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cultural-item .item-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

.cultural-item .item-details p:last-child {
    margin-bottom: 0;
}

.cultural-item .item-details strong {
    color: #1f2937;
}

.time-concepts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.time-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.time-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.time-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.time-examples {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.example {
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.example:last-child {
    margin-bottom: 0;
}

.example strong {
    color: #1f2937;
}

.time-tips h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.time-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.time-tips li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

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

.religion-item {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.religion-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.religion-item .item-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.religion-item .item-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

.religion-item .item-details p:last-child {
    margin-bottom: 0;
}

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

.music-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.music-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.music-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.music-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.music-tip {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #1e40af;
    font-size: 0.9rem;
}

.music-tip strong {
    color: #1f2937;
}

.dance-culture {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.dance-culture h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.dance-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.dance-fact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.fact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dance-fact span:last-child {
    color: #374151;
    font-size: 0.9rem;
}

/* Behavior Guide */
.behavior-guide {
    max-width: 1200px;
    margin: 0 auto;
}

.behavior-intro {
    margin-bottom: 3rem;
}

.behavior-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.behavior-category {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.behavior-category.dos {
    border-left: 5px solid #059669;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

.behavior-category.donts {
    border-left: 5px solid #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fef1f1 100%);
}

.behavior-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.behavior-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.behavior-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.behavior-item .item-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.behavior-item .item-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.5;
}

.behavior-item .item-details p:last-child {
    margin-bottom: 0;
}

.special-situations {
    margin-bottom: 4rem;
}

.special-situations h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.situation-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.situation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.situation-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.situation-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
}

.situation-content p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.situation-tip {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #1e40af;
    font-size: 0.9rem;
}

.situation-tip strong {
    color: #1f2937;
}

/* Food Culture */
.food-culture {
    max-width: 1200px;
    margin: 0 auto;
}

.food-intro {
    margin-bottom: 3rem;
}

.food-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.food-category {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.food-category.staples {
    border-left: 5px solid #f59e0b;
}

.food-category.typical {
    border-left: 5px solid #2563eb;
}

.food-category.drinks {
    border-left: 5px solid #059669;
}

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

.food-item {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.food-item .item-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.food-item .item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.food-item .item-content p {
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

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

.dish-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.dish-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.dish-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dish-tip {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #1e40af;
    font-size: 0.9rem;
}

.dish-tip strong {
    color: #1f2937;
}

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

.drink-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.drink-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.drink-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.drink-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.drink-note {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #1e40af;
    font-size: 0.9rem;
}

.drink-note strong {
    color: #1f2937;
}

.dining-etiquette {
    margin-bottom: 4rem;
}

.dining-etiquette h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.etiquette-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.etiquette-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.etiquette-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.etiquette-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.etiquette-card li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.etiquette-card li:last-child {
    border-bottom: none;
}

.etiquette-card strong {
    color: #1f2937;
}

/* Festivals &amp; Traditions */
.festivals-traditions {
    max-width: 1200px;
    margin: 0 auto;
}

.festivals-intro {
    margin-bottom: 3rem;
}

.festivals-calendar {
    margin-bottom: 4rem;
}

.festivals-calendar h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.festival-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.festival-month {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.festival-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.festival-description p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.festival-highlight {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #1e40af;
    font-size: 0.9rem;
}

.festival-highlight strong {
    color: #1f2937;
}

.local-traditions {
    margin-bottom: 4rem;
}

.local-traditions h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

.tradition-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.tradition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tradition-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tradition-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tradition-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.festival-tips {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.festival-tips h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .service-grid,
    .info-grid,
    .tours-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Geld &amp; WÃ¤hrung Mobile Styles */
    .quick-facts-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .currency-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .situation-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-container {
        grid-template-columns: 1fr;
    }
    
    .advice-grid {
        grid-template-columns: 1fr;
    }
    
    .mistakes-grid {
        grid-template-columns: 1fr;
    }

    /* Gesundheit &amp; Sicherheit Mobile Styles */
    .medicine-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-rules {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .emergency-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .care-levels {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    /* Einreise &amp; Visa Mobile Styles */
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .duration-details {
        grid-template-columns: 1fr;
    }
    
    .customs-items {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .requirement-icon {
        align-self: center;
        margin-top: 0;
    }

    /* Packliste Mobile Styles */
    .packing-items {
        grid-template-columns: 1fr;
    }
    
    .protection-items {
        grid-template-columns: 1fr;
    }
    
    .tech-items {
        grid-template-columns: 1fr;
    }
    
    .medical-items {
        grid-template-columns: 1fr;
    }
    
    .documents-items {
        grid-template-columns: 1fr;
    }
    
    .beach-items {
        grid-template-columns: 1fr;
    }
    
    .tips-categories {
        grid-template-columns: 1fr;
    }
    
    .checklist-items {
        grid-template-columns: 1fr;
    }
    
    .packing-item {
        flex-direction: column;
        text-align: center;
    }
    
    .packing-item .item-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .protection-item {
        flex-direction: column;
        text-align: center;
    }
    
    .protection-item .item-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .tech-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-item .item-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .medical-item {
        flex-direction: column;
        text-align: center;
    }
    
    .medical-item .item-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .document-item {
        flex-direction: column;
        text-align: center;
    }
    
    .document-item .item-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .beach-item {
        flex-direction: column;
        text-align: center;
    }
    
    .beach-item .item-icon {
        align-self: center;
        margin-top: 0;
    }

    /* Klima &amp; Wetter Mobile Styles */
    .characteristics-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .seasons-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .weather-stats {
        grid-template-columns: 1fr;
    }
    
    .rain-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facts-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .timeline-months {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .preparation-categories {
        grid-template-columns: 1fr;
    }
    
    .myths-grid {
        grid-template-columns: 1fr;
    }
    
    .months-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-categories {
        grid-template-columns: 1fr;
    }
    /* Basis-Zustand: Mobile MenÃ¼ ausgeblendet */
.nav-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px; /* je nach HÃ¶he deiner Navigation */
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem;
}

/* Wenn aktiv (nach Klick): MenÃ¼ wird eingeblendet */
.nav-menu.active {
    display: flex;
}
    .apps-grid {
        grid-template-columns: 1fr;
    }

    /* Sprache &amp; Kultur Mobile Styles */
    .phrases-grid {
        grid-template-columns: 1fr;
    }
    
    .slang-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cultural-items {
        grid-template-columns: 1fr;
    }
    
    .time-concepts {
        grid-template-columns: 1fr;
    }
    
    .religion-aspects {
        grid-template-columns: 1fr;
    }
    
    .music-styles {
        grid-template-columns: 1fr;
    }
    
    .dance-facts {
        grid-template-columns: 1fr;
    }
    
    .behavior-items {
        grid-template-columns: 1fr;
    }
    
    .situations-grid {
        grid-template-columns: 1fr;
    }
    
    .food-items {
        grid-template-columns: 1fr;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .drinks-grid {
        grid-template-columns: 1fr;
    }
    
    .etiquette-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .traditions-grid {
        grid-template-columns: 1fr;
    }
    
    .cultural-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cultural-item .item-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .religion-item {
        flex-direction: column;
        text-align: center;
    }
    
    .religion-item .item-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .behavior-item {
        flex-direction: column;
        text-align: center;
    }
    
    .behavior-item .item-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .food-item {
        flex-direction: column;
        text-align: center;
    }
    
    .food-item .item-icon {
        align-self: center;
        margin-top: 0;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .premium-title {
        font-size: 2rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .info-card,
    .tour-content,
    .blog-content {
        padding: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        align-self: center;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .warning-card {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-icon {
        align-self: center;
        margin-top: 0;
    }

    .tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-item .tip-icon {
        align-self: center;
        margin-top: 0;
    }

    .time-slot {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .month-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .app-banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .app-banner-title {
        font-size: 1.8rem;
    }

    .app-features-list {
        gap: 0.8rem;
    }

    .app-feature-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .feature-emoji {
        font-size: 1.3rem;
    }

    .app-price-box {
        max-width: 100%;
    }

    .premium-service-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vs-divider {
        display: none;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .eticket-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .pros-cons {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

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

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

    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .info-grid,
    .excursions-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .form-container,
    .contact-form-container {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .app-banner-title {
        font-size: 1.6rem;
    }

    .app-banner-subtitle {
        font-size: 1rem;
    }

    .app-price-box {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.2rem;
    }
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .premium-cta-btn {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
/* Basis-Zustand: Mobile MenÃ¼ ausgeblendet */
.nav-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px; /* je nach HÃ¶he deiner Navigation */
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem;
}

/* Wenn aktiv (nach Klick): MenÃ¼ wird eingeblendet */
.nav-menu.active {
    display: flex;
}


}</pre></body></html>