        @font-face {
            font-family: 'Rossetti';
            src: url('fonts/Rossetti-W00-Regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        body {
            margin: 0;
            padding: 20px;
            font-family: Arial, sans-serif;
            color: #1B182B;
            background: url('images/background.png') no-repeat center center;
            background-size: cover;
            min-height: 100vh; /* Set the minimum height to full viewport height */
        }
        
        .container {
            max-width: 1200px; /* Desktop size */
            margin: 0 auto;
        }
        
        .header, .footer {
            /*          color: #fff;*/
            padding: 20px;
            text-align: center;
        }
        
        .logo {
            font-family: 'Rossetti', Arial, sans-serif;
            font-size: calc(4vw + 2vh);
            color: #E9E8D5;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
            max-width: 75%;
            margin: 20px auto 10px;
            text-align: center; /* Add this line to center the logo */
        }

        .subTitle {
            font-family: 'Rossetti', Arial, sans-serif;
            font-size: calc(2vw + 1vh);
            color: #E9E8D5;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
            max-width: 75%;
            margin: 10px auto 10px;
            text-align: center; /* Add this line to center the logo */
        }

        .tagLine {
            font-family: 'Rossetti', Arial, sans-serif;
            font-size: calc(1vw + 1vh);
            color: #E9E8D5;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
            max-width: 75%;
            margin: 10px auto 10px;
            text-align: center; /* Add this line to center the logo */
        }

        .contact {color: #E9E8D5;}

        .header a {
            text-decoration: none;
        }
        
        /* Menu */
        .menu {
            list-style-type: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
            text-align: center;
            background-color: #EAA194;
            border-radius: 4px 4px 0 0;
            border: 1px solid #1B182B;
            border-bottom: none;
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        }
        
        .menu li {
            display: inline-block;
        }
        
        .menu li a {
            font-family: 'Rossetti', Arial, sans-serif;
            /*          font-weight: bold;*/
            font-size: 18px;
            display: block;
            color: #1B182B;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            /*          text-transform: uppercase;*/
        }
        
        .menu li a:hover {
            color: #A140A6;
        }
        
        /* Sub Menu */
        .submenu {
            list-style-type: none;
            margin: 10px 0 20px 0;
            padding: 0;
            padding-bottom: 30px;
            overflow: hidden;
            text-align: center;
            clear: both;
            width: 100%;
            border-bottom: 1px solid #1B182B; /* Divider line added */
        }
        
        .submenu li {
            display: inline-block;
            vertical-align: middle; /* This line added */
            
        }
        
        .submenu li a {
            font-size: 14px;
            display: inline;
            color: #1B182B;
            text-align: center;
            padding: 10px;
            text-decoration: none;
        }
        
        .submenu li a:hover {
            color: #A140A6;
        }
        
        .footer .submenu a {
            /*          color: white;*/
        }
        
        /* Page Title */
        .page-title {
            text-align: center;  /* Center the text */
            font-size: 3em;  /* Change this value to change the size */
            color: #1B182B;  /* Change this value to change the color */
            margin: 30px 0;  /* Add some margin at the top and bottom */
            text-transform: uppercase;
        }
        
        
        /* Content */
        .content {
            background: #E9E8D5;
            padding: 40px; /* Increased padding to 40px */
            text-align: center;
            border-radius: 0 0 4px 4px;
            border: 1px solid #1B182B;
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        }
        
        .columns-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px; /* Increased gap between columns */
        }
        
        .column {
            flex-basis: calc((100% - 80px) / 3); /* Assuming each column should take one third of the container width, minus the total gap */
            margin: 0; /* Remove margin */
            box-sizing: border-box;
        }
        
        .column p {
            text-align: left;
            line-height: 1.15;
        }
        
        .column img {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
            /*          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);*/
            border: 1px solid #1B182B;
        }
        
        .column-divider {
            display: none;
            margin: 40px 0 0 0;
            border: 0;
            border-top: 1px solid #1B182B;
        }

        .content a {
            color: #33306c;
        }

        .make-appointment {
            background: #eaa294;
            padding: 15px;
        }
        
        /* Moon Icons */
        .new-moon, .full-moon {
            display: inline-block;
            vertical-align: -2px;  /* Adjust this value as necessary */
            width: 12px; 
            height: 12px;
            border-radius: 50%; 
            margin-right: 5px;
        }
        
        .new-moon {
            border: 2px solid black;
        }
        
        .full-moon {
            width: 16px;
            height: 16px;
            background: black;
        }
        
        /* Tablet Landscape */
        @media screen and (max-width: 1024px) {
            .container {
                max-width: 960px;
            }
        }
        
        /* Tablet Portrait */
        @media screen and (max-width: 768px) {
            .container {
                max-width: 720px;
            }
        }
        
        /* Mobile */
        @media screen and (max-width: 480px) {
            .container {
                width: 100%;
            }
        }
        
        /* Stacking columns on iPad portrait and smaller sizes */
        @media screen and (max-width: 1000px) {
            .column {
                flex: 1 0 100%; /* On small screens, each column takes the full width */
                margin: 20px 0; /* Adjusting margin for stacking */
            }
            .column img {
                max-width: 75%; /* Limiting image width to 75% when stacked */
                margin: 0 auto 40px; /* Center the image when stacked */
                display: block; /* Make the image block level to enable centering */
            }
            .column-divider {
                display: block;
            }
        }
        
        