* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    background-color: #f5f0e6;
    color: #003366;
    line-height: 1.6;
}
h1{
    font-family: 'Birmingham';
}
h2{
    font-family: 'Amatic-Bold';
}
p{
    font-family: 'Irregularis';
    font-size: 3em;
}
@font-face {
    font-family: "Birmingham";
    src: url("fonts/Birmingham.ttf") format("truetype");
}

@font-face {
    font-family: "Amatic-Bold";
    src: url("fonts/Amatic-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Irregularis";
    src: url("fonts/Irregularis.ttf") format("truetype");
}

@font-face {
    font-family: "Olduvai";
    src: url("fonts/Olduvai.ttf") format("truetype");
}

@font-face {
    font-family: "SecretSociety-Aged";
    src: url("fonts/SecretSociety-Aged.otf") format("truetype");
}

/* Slide-In Left Animation */
@keyframes mgSlideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Initially hide elements with the slide-in class */
.mg-slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out, transform 1.2s ease-out;
}
/* When the 'active' class is added, trigger the animation */
.mg-slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}
/* Snake Container Styling */
.snake-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    padding: 20px 0;
    overflow: hidden;
}
/* Snake Divider Image Styling */
.snake-divider {
    height: 40px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}
/* Tablets and Larger Phones */
@media (max-width: 768px) {
    .snake-divider {
        height: 35px;
    }
}
/* Mobile Devices */
@media (max-width: 480px) {
    .snake-divider {
        height: 20px;
    }
}
/* Navbar Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.navbar {
    display: flex;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.8));
    padding: 8px 0px 5px 0px;
}
.navbar-menu {
    display: flex;
    list-style: none;
}
.navbar-item {
    margin: 0 20px;
}
.navbar-link {
    font-family: 'SecretSociety-Aged';
    text-decoration: none;
    font-size: 1.8em;
    color: #FFFDD0;
    position: relative;
    transition: color 0.3s ease, font-size 0.3s ease;
}
/* Hover Effect with Animated Underline */
.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #79dd9a;
    transition: width 0.3s ease, left 0.3s ease;
}
.navbar-link:hover::after {
    width: 100%;
    left: 0;
}
.navbar-link:hover {
    color: #9df0b8;
}
/* Active Link Styling */
.navbar-item.active .navbar-link {
    font-weight: bold;
    color: #3cda70;
    letter-spacing: 2px;
    border-bottom: none;
}
/* Scrolled Navbar Styling */
header.scrolled {
    background-color: rgba(231, 126, 53, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header.scrolled .navbar-link {
    font-size: 1.9em;
}
/* Navbar Background Opacity on Hover when Scrolled */
header.scrolled:hover {
    background-color: rgba(231, 126, 53, 0.75);
}
/* Landing Page Content Styling */
.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 99vh;
    background-image: url('images/mainimages/MGphotographer24MAINCopy.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}
.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFDD0;
    border-radius: 10px;
    margin-top: -100px;
}
.landing-content img{
    width: 1000px;
    max-width: 90%;
    margin-bottom: 0px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.8));
}
/* Info Box Styling */
.info-box {
    background-color: rgba(204, 85, 0, 0.5);
    padding: 15px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 10px;
}
/* target only the address link in its context */
.info-box .address-text a,
.info-box .address-text a:link,
.info-box .address-text a:visited,
.info-box .address-text a:hover,
.info-box .address-text a:active {
  color: white;
  text-decoration: none;
}

.address-text {
    font-size: 2.7em;
    letter-spacing: 2px;
    color: white!important;
    font-family: 'SecretSociety-Aged';
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    text-align: center;
    margin: 0;
    text-decoration: none;
}
.address-text a:hover {
  text-decoration: underline;
}
.time-text{
    font-size: 2.2em;
    letter-spacing: 1.5px;
    font-family: 'Amatic-Bold';
    color: white;
}
.explore-menu-btn {
    background-color: white;
    font-family: Birmingham;
    color: #003366;
    font-size: 1.3em;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}
.explore-menu-btn:hover {
    background-color: #fff1c7;
    transform: scale(1.05);
}
@media screen and (max-width: 768px) {
    .navbar-item {
        margin: 0 10px;
    }
    .info-box {
        padding: 10px 20px;
    }
    .address-text {
        font-size: 1.45em;
        letter-spacing: 1px;
    }
    .time-text{
        font-size: 1.7em;
    }
    .explore-menu-btn {
        font-size: 1.3em;
        padding: 12px 30px;
    }
}
@media screen and (max-width: 480px) {
    .navbar-item {
        margin: 0 10px;
    }
    .navbar-link {
        font-size: 1.6em;
    }
    .landing-content img{
        max-width: 100%;
    }
    .address-text {
        font-size: 1.6em;
    }
    .time-text{
        font-size: 1.8em;
    }
    .explore-menu-btn {
        font-size: 1.4em;
    }
}
/* General Styling for Image Section */
.image-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #f8f8f8;
}
.image-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}
.image-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}
.image-title {
    font-family: "Birmingham";
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}
.image-text {
    font-size: 1em;
    color: #555;
    margin: 5px 0;
}
/* General Section Styles */
.styled-image-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: #f5f0e6;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
/* Styled Card */
.styled-image-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    flex: 1 1 250px;
}
/* Image Styles */
.styled-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}
/* Title Text */
.image-title {
    font-family: 'SecretSociety-Aged';
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: center;
}
/* Description Text */
.image-description {
    font-size: 1.1em;
    color: #003366;
    margin: 5px 0;
    text-align: center;
}
/* Decorative Circle */
.styled-image-card::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #d4a017;
    border-radius: 50%;
    margin-top: 10px;
    display: block;
}
/* Responsive Design */
@media screen and (max-width: 900px) {
    .styled-image-section {
        gap: 20px;
        padding: 60px 5px;
    }
    /* Styled Card */
    .styled-image-card {
        max-width: 225px;
        padding: 10px;
    }
}
@media screen and (max-width: 768px) {
    /* Stack Cards Vertically */
    .styled-image-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 10px;
        max-width: 100%;
    }
    .styled-image-card {
        width: 100%;
        height: auto;
        max-width: 400px;
        padding: 15px;
        flex: none;
    }
    .image-title {
        font-size: 1.1em;
        letter-spacing: 0.8px;
    }
    .image-description {
        font-size: 1em;
    }
}
/* Parallax Section Styling */
.parallax-section {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
/* Specific Background Images */
.parallax-stirfry {
    background-image: url('images/mainimages/MGphotographer14.jpg');
}
.parallax-pancakes {
    background-image: url('images/mainimages/MGphotographer23.jpg');
}
.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
}
.parallax-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
}
/* Static Section Styling*/
.static-section{
    padding: 60px 20px;
    background-color: #fff6e8;
    color: #3761d4;
    text-align: center;
}
.static-section .content{
    font-size: .7em;
    max-width: 800px;
    margin: 0 auto;
}
@media only screen and (max-width: 950px) and (min-width: 769px) {
/* Parallax Section Styling */
.parallax-section {
    position: relative;
    height: 40vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
/* Use a separate wrapper to simulate parallax */
.parallax-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    will-change: transform;
}
}
/* Fallback for Mobile Devices */
@media only screen and (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll; /* Disable parallax */
        background-size: cover; /* Ensure the image fills the section */
        background-position: center center; /* Center the image */
        background-repeat: no-repeat; /* Prevent the image from repeating */
        height: 250px; /* Set a reasonable height for mobile */
        padding: 0; /* Remove padding to prevent excessive space */
    }
    .parallax-section::before {
        display: none; /* Remove overlay effects if any */
    }
}
/* Text and Image Stack on Mobile */
.static-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 60px 20px;
    text-align: center;
}

.static-section .content {
    flex: 1 1 500px;
    padding: 20px;
    text-align: left;
}

.static-section img {
    flex: 1 1 400px;
    max-width: 100%;
    border-radius: 10px;
}

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
    .static-section {
        flex-direction: column;
        text-align: center;
    }
    .static-section img {
        margin-bottom: 20px;
    }
    .parallax-section {
        height: 200px;
    }
}
/* Customer Reviews Section Styles */
.reviews-section {
    padding: 60px 20px 0px 20px;
    position: relative;
    z-index: 1;
}
.reviews-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #CC5500;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
}
.reviews-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    perspective: 1000px;
}
.review-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    max-width: 300px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: rotateY(0deg);
}
.review-card:hover {
    transform: rotateY(10deg) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.star {
    width: 20px;
    height: 20px;
    margin: 0 2px;
}
.review-text {
    font-size: 1.1em;
    color: #555555;
    font-family: Irregularis;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.5;
}
.reviewer {
    font-size: 1.1em;
    color: #333333;
    text-align: center;
    font-weight: bold;
}
/* Racoon Section */
.artistic-showcase {
    padding: 40px 20px 0 20px;
}
.showcase-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.showcase-divider {
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
    margin-bottom: 25px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.showcase-image, .showcase-text {
    flex: 1 1 500px;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.showcase-image img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    margin-left: 160px;
}
.showcase-text h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-family: 'Olduvai';
    color: #333333;
}
.showcase-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555555;
}
.bold-irregularis{
    font-weight: bold;
    letter-spacing: .7px;
}
/* Active State for Animations */
.showcase-image.visible, .showcase-text.visible {
    opacity: 1;
    transform: translateY(0);
}
.showcase-text{
    padding-right: 10vw;
}
/* Responsive Design */
@media (max-width: 1023px) {
    .reviews-container {
        justify-content: space-around;
    }
    .reviews-section h2 {
        font-family: 'Amatic SC', serif;
        font-weight: 500;
    }
    .showcase-text p {
        font-size: 1.35em;
        letter-spacing: 1px;
        line-height: 2.1;
    }
    .bold-irregularis{
        font-size: 1.2em;
        line-height: 14px;
        letter-spacing: 1.2px;
    }
}
@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 10px;
    }
    .reviews-section h2 {
        font-size: 2em;
    }
    .showcase-text p {
        letter-spacing: .2px;
    }
    .bold-irregularis{
        font-size: 1.1em;
        line-height: 12px;
        letter-spacing: .8px;
    }
    .review-card {
        max-width: 90%;
    }
    .showcase-image img {
        width: 250px;
        margin-left: 90px;
    }
}
@media (max-width: 480px) {
    .review-card {
        padding: 20px 15px;
    }
    .star {
        width: 18px;
        height: 18px;
    }
    .review-text {
        font-size: 0.95em;
    }
    .reviewer {
        font-size: 0.85em;
    }
    .showcase-image img {
        width: 200px;
        margin-left: 80px;
    }
}
/* Our Vision Section */
.vision-section {
    background: linear-gradient(135deg, #f5f0e6 0%, #e0e0e0 100%);
    padding: 80px 20px;
}
.vision-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}
.vision-image {
    flex: 1 1 400px;
    max-width: 400px;
    position: relative;
}
.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vision-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.vision-content {
    flex: 1 1 500px;
    max-width: 600px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vision-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.vision-content h2 {
    font-size: 2.8em;
    color: #003366;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: 1px;
}
.vision-divider {
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
    margin-bottom: 25px;
    margin-left: 30px;
}
.vision-content p {
    font-size: 1.2em;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 20px;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .vision-image, .vision-content {
        max-width: 40%;
    }
    .vision-content{
        padding: 10px;
    }
    .vision-content h2 {
        font-size: 2.4em;
        font-family: 'Amatic SC', serif;
        font-weight: 500;
    }
    .vision-content p {
        font-size: 1.15em;
        letter-spacing: 0;
        line-height: 28px;
    }
}
@media (max-width: 600px) {
    .vision-image {
        max-width: 400px;
    }
    .vision-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .vision-section {
        padding: 40px 10px;
        overflow-x: hidden; /* Prevent horizontal overflow */
    }
    .vision-content {
        max-width: 90%; /* Allow content to take up most of the screen width */
        margin: 0 auto; /* Center the content */
        text-align: center; /* Align text centrally */
        padding: 20px;
        box-sizing: border-box; /* Include padding in width calculations */
    }
    .vision-content h2 {
        font-size: 2em;
        text-align: center; /* Ensure title is centered */
    }
    .vision-content p {
        font-size: 1.1em; /* Slightly larger for readability */
        text-align: center; /* Center-align text */
        line-height: 1.6;
    }
}


/* Come On In! Section */
.community-section {
    padding: 60px 20px;
    font-size: 1.2em;
    font-family: 'Irregularis';
    letter-spacing: .8px;
}
.community-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.community-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}
.community-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.community-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.community-item:hover img {
    transform: scale(1.1);
}
.community-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(204, 85, 0, 0.8);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 1em;
    font-family: 'SecretSociety-Aged';
    letter-spacing: 2px;
}
.community-item:hover .overlay {
    transform: translateY(0);
}
@media (max-width: 1023px) {
    .overlay {
        font-size: 1.5em;
    }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .community-section h2 {
        font-size: 2em;
    }
    .community-section p {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .community-item img {
        height: 250px;
    }
}
@media (max-width: 480px) {
    .community-section {
        padding: 40px 10px;
    }
    .community-section h2 {
        font-size: 1.8em;
    }
    .community-section p {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .community-item img {
        height: 200px;
    }
}
/* Footer Style --Footer Style --Footer Style --Footer Style --*/
footer {
    position: relative;
    color: #c2872f;
    padding: 120px 20px;
    overflow: hidden;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-section {
    flex: 1 1 45%;
    margin: 20px;
}
.footer-section.about {
    padding-left: 80px;
}
.footer-section.about h3 {
    font-size: 2.2em;
    margin-bottom: 15px;
    font-family: 'Birmingham';
    color: #CC5500;
}
.footer-section.about p {
    font-size: 1.3em;
    line-height: 1.6;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'SecretSociety-Aged';
    color: #c2872f;
}
.footerlabels{
    font-family: Amatic-Bold!important;
    font-size: 1.8em!important;
    letter-spacing: 2px!important;
    font-style: italic;
    color: #CC5500!important;
}
/*
cute cursive font{
    font-family: "Rouge Script", cursive!important;
    font-weight: 400;
    font-style: normal;
}
*/
.footer-section.order {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-right: 60px;
}
.footer-section.order h4 {
    font-size: 1.7em;
    margin: 5px 0px;
    font-family: 'SecretSociety-Aged';
    color: #CC5500;
    letter-spacing: 2px;
}
.phone-number {
    font-size: 1.6em;
    font-family: 'SecretSociety-Aged';
    color: #CC5500;
    letter-spacing: 2px;
}
.phone-number:hover {
    color: #e47e35;
}
.btn2 {
    background: white;
    text-decoration: none;
    border: 2px solid #e47e35;
    color: #CC5500;
    padding: 10px 20px;
}
.btn2:hover {
    box-shadow: 0 5px 15px rgba(204, 85, 0, 0.2);
    background: #FFFDD0;
    color: #dd7225;
}

.social-media {
    margin-top: 20px;
}
.social-media a {
    color: #CC5500;
    margin-right: 15px;
    font-size: 1.8em;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-media a:hover {
    color: #c2872f;
    transform: scale(1.2);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #c2872f;
    padding-top: 20px;
    margin-top: 20px;
}
.footer-bottom p {
    font-size: 1.1em;
    font-weight: bold;
    color: #CC5500;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/mainimages/logos/footerBG.png') top center / cover no-repeat;
    opacity: 0.6;
    z-index: -1;
}

@media (max-width: 950px) {
.footer-section.about {
    padding-left: 5px;
}
.footer-section.about h3 {
    font-size: 1.7em;
}
.footer-section.order {
    margin-right: 5px;
}
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        margin: 20px 0;
    }
    .footer-section.about h3,
    .footer-section.order h4 {
        text-align: center;
    }
}
