 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }

        .containers {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* FAQ Section Styles */
        .faq-section {
            margin-bottom: 80px;
        }

        .faq-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .faq-subtitle {
            font-size: 1rem;
            color: #555;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .faq-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .faq-column {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .faq-item {
            margin-bottom: 30px;
        }

        .faq-question {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .faq-answer {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.7;
        }

        .faq-answer a {
            color: #0066cc;
            text-decoration: none;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        /* Travel Ideas Section Styles */
        .travel-section {
            margin-bottom: 40px;
        }

        .travel-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 40px;
        }

        .travel-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            align-items: start;
        }

        .hero-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.6));
            padding: 40px 30px 30px;
            color: white;
        }

        .hero-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        .side-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .side-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .side-card:hover {
            border-color: #0066cc;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .side-card-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .side-card-content {
            flex: 1;
        }

        .side-card-title {
            font-size: 1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .side-card-subtitle {
            font-size: 0.9rem;
            color: #666;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .containers {
                padding: 20px 15px;
            }

            .faq-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .travel-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero-card {
                height: 300px;
            }

            .hero-overlay {
                padding: 30px 20px 20px;
            }

            .hero-title {
                font-size: 1.25rem;
            }

            .side-card {
                padding: 15px;
            }

            .side-card-image {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .faq-title,
            .travel-title {
                font-size: 1.5rem;
            }

            .hero-card {
                height: 250px;
            }

            .side-card {
                flex-direction: column;
                text-align: center;
            }

            .side-card-image {
                width: 100%;
                height: 120px;
            }
        }