
body {
            font-family: 'EB Garamond', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #3f5571;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh; /* Full height of the viewport */
            text-align: center;
        }
        a{
            color: #3f5571;
            text-decoration: none;
        }

        img.logo{
            max-width: 220px;
            margin-bottom: 15px;
        }

        .container {
            padding: 30px;
            max-width: 900px;
            background-color: white;
            border-radius: 7px;
            width: 100%; /* Ensure it scales within the viewport */
            box-sizing: border-box;
        }
        .section h2 {
            font-size: 23px;
            color: #004e7c;
            margin-bottom: 10px;
        }

        .section p {
            font-size: 18px;
            line-height: 1.72;
        }
         .section-hr hr {
            border: 0;
            border-top: 4px solid #004e7c;
            width: 60px;
            margin: 0px 0px 20px 0px auto;
        }

        .section-hr{
            margin-top: 5px;
            margin-bottom: 0px;
        }

        .contact-info,
        .opening-hours {
            background-color: #fff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        .contact-info ul,
        .opening-hours ul {
            list-style: none;
            padding: 0;
        }
        .contact-info li,
        .opening-hours li {
            font-size: 18px;
            margin-bottom: 0px;
            line-height: 1.72;
        }

@media (max-width: 380px) {
    img.logo {
        max-width: 150px;
        margin-top: 50px!important;
    }
}