        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            padding: 20px;
        }
        
        h1 {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }
        
        h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }

        .block {
	    max-width: 800px; /* Limits the width of the block */
	    margin: 0 auto;   /* Centers the block on the page */
	    padding: 0 20px;  /* Creates gutters (left/right) inside the block */
	    text-align: center; /* Centers the text within the block */
            color: #333;
        }

        .list {
	    max-width: 800px; /* Limits the width of the block */
	    margin: 0 auto;   /* Centers the block on the page */
	    padding: 0 20px;  /* Creates gutters (left/right) inside the block */
	    text-align: left;
            color: #333;
        }

        .carousel-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: none;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
	    align-items: flex-start;
        }
        
        .carousel-slide {
            display: none;
            width: 100%;
            height: 100%;
        }
        
        .carousel-slide.active {
            display: block;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 24px;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s;
            z-index: 10;
        }
        
        .carousel-button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        .prev {
            left: 10px;
        }
        
        .next {
            right: 10px;
        }
        
        .carousel-counter {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            z-index: 10;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 15px;
            background-color: #f9f9f9;
            flex-wrap: wrap;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #bbb;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .dot.active {
            background-color: #717171;
        }

.bnb-contact-card {
    background-color: #fefaf3; /* Warm, creamy background */
    border: 1px solid #e0d5c1;
    border-radius: 12px;
    padding: 30px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Georgia', serif; /* Classic, welcoming font */
}

.bnb-contact-card h3 {
    color: #5a4b42; /* Soft brown */
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.subtitle {
    color: #8c7b70;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.contact-details {
    text-align: left;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #b09b85; /* Light brown on hover */
}

.icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.contact-button {
    background-color: #b09b85; /* Inviting neutral color */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #8c7b70;
}
