        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: #ffffff;
            color: #333;
      
        }
.white_space {
    width: 100%;
    height: 120px;
    background-color: #ffffff;
}
        /* Container to center everything */
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Section */
        header {
            text-align: center;
            margin-bottom: 50px;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            color: #8B2E31; /* Deep Wine Red matching the image */
            font-size: 3rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        p.subtitle {
            font-size: 1.1rem;
            color: #555;
            font-weight: 300;
        }

        /* Grid Layout */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 Columns */
            gap: 30px; /* Space between images */
            margin-bottom: 50px;
        }

        /* Image Cards */
        .image-card {
            width: 100%;
            height: 250px; /* Fixed height for uniformity */
            overflow: hidden;
            border-radius: 12px; /* Rounded corners */
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image covers area without stretching */
            display: block;
        }

        /* Hover effect (optional, adds a nice touch) */
        .image-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }

        /* Responsive Design: Switch to 2 columns on tablets, 1 on mobile */
        @media (max-width: 900px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
        }