
    body {
        background-color: #f8d7da;
    }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        body {
              background-color: #ffffff;
              color: #cc0000;
              line-height: 1.6;
          }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        .hero-banner {
    border-radius: 0 0 0 30px;

    background: #f8d7da;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0 15px 15px 0;
}
        .banner-content h1 {
            font-family: Arial, sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #cc0000;
            margin: 1.5rem 0 0.8rem;
            padding: 0.8rem 1.5rem;
            background-color: transparent;
            border-radius: 0 0 0 30px;
              display: inline-block;
              border-bottom: 1px solid #cc0000;
          }
        .banner-content p {
            font-family: Arial, sans-serif;
            font-size: 1.2rem;
            color: #cc0000;
            margin: 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .intro {
    background: none;
    padding: 0;

            font-family: Arial, sans-serif;
            max-width: 1200px;
            margin: 1rem auto 3rem;
            padding: 0 1.5rem;
        }
        .intro p {
            color: #333333;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }
        .intro strong {
            color: #cc0000;
            font-weight: bold;
        }
        .photo-collage {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 0;
            padding: 0;
        }
        .photo-collage img {
            width: 100%;
            max-height: 220px;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            background-color: rgba(255,255,255,0.1);
            margin: 0;
            display: block;
            padding: 0;
        }
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #cc0000;
        }
        .stat-label {
            font-size: 1rem;
            color: #666666;
            display: block;
        }
        .photo-collage img:hover {
            transform: scale(1.03);
        }
        .banner-content {
            position: relative;
            z-index: 1;
        }
        .heart-icon {
            margin-bottom: 1.5rem;
        }
        .hero-banner h1 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
            position: relative;
            display: inline-block;
        }
        .hero-banner h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 10%;
            width: 80%;
            height: 3px;
            background-color: white;
        }
        .hero-banner p {
            font-size: 1.1rem;
            color: #666666;
            max-width: 800px;
            margin: 0 auto;
        }
        header h1 {
            font-size: 2.5rem;
            color: #000000;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 10%;
            width: 80%;
            height: 3px;
            background-color: #cc0000;
        }
        header p {
            color: #666666;
            font-size: 1.1rem;
        }
        .intro {
            max-width: 800px;
            margin: 0 auto 3rem;
            text-align: center;
            color: #333333;
        }
        .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
    grid-auto-flow: dense;
    background: none;
    padding: 0;

            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }.review-card {
    break-inside: avoid;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    min-height: 220px;
    transition: transform 0.3s ease;
}

.review-card:nth-child(2n) {
    grid-row: span 2;
}

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

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card:nth-child(2n) {
        grid-row: span 1;
    }
}

.review-card {            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
        }
        .review-card::before {
            content: '"';
            font-size: 5rem;
            color: #cc0000;
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .review-text {
            font-size: 1rem;
            color: #333333;
            margin-bottom: 1rem;
            padding-top: 1rem;
            min-height: 120px;
        }
        .reviewer {
            font-weight: bold;
            color: #000000;
        }
        .review-date {
            font-size: 0.9rem;
            color: #666666;
        }
        .reviewer-country {
            color: #cc0000;
            font-style: italic;
        }
        .highlight-bar {
            background-color: #f8d7da;
            padding: 1rem;
            text-align: center;
            margin-top: 3rem;
            color: #000000;
            font-weight: bold;
        }
    