/*
 Refactored with ChatGPT - 27th October 2024, 15:30 UK 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}
*/

.prodContainer {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.map-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-image {
    width: 40%;
    max-width: 300px;
    border-radius: 8px;
    margin-right: 20px;
}

.map-content {
    width: 60%;
}

map-content h2 {
    color: #0056b3;
    margin-bottom: 10px;
}

map-content h3 {
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
}

map-content ul {
    list-style-type: none;
    margin-left: 0;
}

map-content ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

map-content ul li:before {
    content: '•';
    color: #0056b3;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.map-section:last-child {
    margin-bottom: 0;
}

map-content p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .map-section {
        flex-direction: column;
        text-align: center;
    }

    .map-image {
        width: 100%;
        max-width: none;
        margin-bottom: 15px;
    }

    .map-content {
        width: 100%;
    }
}


.image-button-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-aligns the image and button */
    margin-bottom: 15px;
}

.map-image {
    width: 100%; /* Ensures the image is responsive */
    max-width: 300px; /* Adjusts max width as needed */
    border-radius: 8px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: #28a745;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px; /* Adds space between the image and button */
    margin-bottom: 20px;
        
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    background-color: #218838;
}

.view-more-btn::after {
    content: '➔';
    margin-left: 10px;
    font-size: 1.2em;
    color: #ffffff;
}
