@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-color: white;
    --background-color: black;
    --accent-color: pink;
    --text-color: black;
    --hover-color: lightblue;
    --header-text-color: white;
    --head-dot-color: darkgray;
    --shop-header-text-color: black;
    --footer-page-text-color: white;
    --media-shop-hero-textColor: #CB4154;
}

[data-theme="light"] {
    --accent-color: orange;
    --primary-color: black;
    --background-color: white;
    --text-color: white;
    --header-text-color: white;
    --shop-header-text-color: black;
    --footer-page-text-color: #696969;
    --media-shop-hero-textColor: orange;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    /* NOTE: Ensures the body doesn't exceed the viewport width */
    overflow-x: hidden;
    color: var(--text-color);
    font-size: 18px;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
}

section {
    margin-bottom: 2em;
}

h1 {
    color: var(--primary-color);
    margin: 0.625rem 0;
    /* 10px/16px */
    text-transform: uppercase;
    background: none;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 50px;
}

h2 {
    color: var(--primary-color);
    background: none;
    text-transform: uppercase;
    font-size: 40px;
    font-family: 'Playfair Display', serif;
}

h3 {
    background: none;
    color: var(--primary-color);
    font-size: 24px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

h4 {
    background: none;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

p {
    line-height: 1.6;
    text-align: center;
}

button {
    background-color: var(--accent-color);
    color: var(--background-color);
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    padding: 8px 30px;
    border: none;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;
}

button:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 30px;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

input {
    background: var(--primary-color);
    padding-right: 15px;
}

hr {
    background-color: var(--accent-color);
    border: none;
    height: 2px;
}

/*highlight if search applied*/
.highlight {
    background-color: yellow;
}

/*Nav Bar*/
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    width: 100%;
}

.logo a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    /* margin: 20px 0 0 80px;  NOTE: Logo should be aligned left.*/
}

.navbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    /* NOTE: Allows navbar items to wrap onto the next line on smaller screens */

}

.navbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.nav-upper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-socials {
    display: flex;
    gap: 1rem;
    margin-right: 6rem;
}

.currency-select {
    background: var(--background-color);
    border: none;
    margin-right: 3.5rem;
    color: var(--primary-color);
}

.nav-lower {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-right: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.nav-links li {
    padding: 0 15px;
    position: relative;
}

.nav-links a {
    color: var(--accent-color);
    text-decoration: none;
}

.nav-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.fa-bars,
.fa-times {
    visibility: hidden;
}

.nav-icons i {
    font-size: 20px;
    margin: 0 20px;
}

.nav-socials a,
.nav-icons a {
    display: inline-block;
    color: inherit;
    transition: transform 0.2s ease-in-out;
}

.nav-socials a:hover,
.nav-icons a:hover {
    transform: scale(1.1);
}

.nav-socials,
.currency-select,
.nav-links,
.nav-icons {
    flex: 1 1 auto;
    /* NOTE: Allows these elements to grow and shrink as needed */
    padding: 0 10px;
    /* NOTE: Smaller padding on smaller screens */
}

/*search bar*/
#search-box form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
}

#search-box input {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#search-box button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.slideshow-controls {
    transform: translateX(-50%);
    display: flex;
    background: none;
    margin-top: 10px;
    margin-left: 12.5rem;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: var(--head-dot-color);
    border-radius: 50%;
    display: inline-block;
    opacity: 1;
}

.active,
.dot:hover {
    background-color: var(--primary-color);
}

/* Submenu and hover image styles */
.submenu-container {
    background-color: var(--background-color);
    display: none;
    position: fixed;
    left: 0;
    margin-top: 20px;
    width: 100%;
    height: 70%;
    z-index: 1;
}

.has-submenu:hover .submenu-container {
    display: inline-block;
}

.hover-links {
    display: grid;
    position: absolute;
    right: 35%;
    top: 20%;
    gap: 18px;
}

.hover-links li {
    list-style: none;
}

.hover-links a {
    color: var(--primary-color);
}

.hover-links li a:hover {
    color: var(--accent-color);
}

.hover-image {
    display: flex;
    flex-direction: column;
    margin-left: 200px;
    margin-top: 30px;
}

/* home page*/
.discount {
    background: #252424;
    color: var(--header-text-color);
    font-weight: bold;
    padding: 5px 0 5px 0;
    text-align: center;
    text-transform: uppercase;
}

.hero {
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: auto;
    padding-right: 15rem;
    /*NOTE: MOVED FROM hero-content  */
    width: 100%;
    /*NOTE: THIS SHOULD BE WIDTH: 100% FOR FULL WIDTH. MAX-WIDTH WITHOUT FULL WIDTH MEANS IT MAY NOT BE 100% WIDTH IF CHILD ELEMENTS AREN'T FULL WIDTH */
    transition: background-image 0.5s ease-in-out;
}

.hero-content {
    text-align: center;
    background: none;
}

.hero-content button {
    background-color: var(--background-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 30px;
    border: none;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;
}

.hero-content button:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.container {
    width: 100%;
    /*NOTE: A .container class is typically used to set the width only that is reused. Flexbox properties should be avoided since it imposes layout styles that may not be applicable in all uses of a container */
}

.feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature:nth-child(even) .feature-image {
    order: 2;
}

.feature-image {
    flex: 1;
    overflow: hidden;
}

.feature-image,
.feature-text {
    width: 50%;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature-text {
    gap: 1em;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
}

.feature-text * {
    max-width: 90%;
    margin: auto;
}

.feature-text h2 {
    margin: 0;
}

.shop-by {
    text-align: center;
    padding: 1.25rem;
}

.shop-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.shop-items .item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.shop-items .item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    color: var(--primary-color);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0);
}

.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 5px;
}

.shop-items button {
    background-color: var(--background-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 30px;
    cursor: pointer;
    margin-top: 250px;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;
}

.item button:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-radius: 30px;
}

.promo-section {
    background-image: url("../img/home/plant5.jpg");
    position: relative;
    padding: 15em 3em 15em;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.promo-content {
    background: none;
    padding: 10px;
    text-align: center;
    width: 40%;
}

.promo-content h2,
.care-content h2,
.promo-content h3,
.care-content h3 {
    color: var(--header-text-color);
    padding-bottom: 10px;
    text-align: center;
}

.promo-content button {
    background-color: var(--background-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 30px;
    border: none;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;
}

.promo-content button:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}


.promo-content .read-more {
    display: inline-block;
    color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 10px;
}

.promotions {
    padding: 20px;
    text-align: center;
}

#blog {
    text-align: center
}

.blog-posts {
    display: flex;
    justify-content: space-evenly;
    margin-top: 2em;
    padding: 0 1em;
}

.blog-posts .post {
    width: 32%;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-posts .post img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.blog-posts .post:hover img {
    transform: scale(1.05);
}

.content-overlay,
.potted-content-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.content-overlay h2,
.potted-content-overlay h2 {
    font-family: 'Playfair Display', serif;
    background: none;
    color: var(--header-text-color);
    font-size: larger;
}

.content-overlay p,
.potted-content-overlay p {
    background: none;
    font-size: medium;
    text-transform: uppercase;
    color: var(--header-text-color);
}

.content-overlay button,
.potted-content-overlay button {
    padding: 5px 10px;
}


.care-tips {
    background-image: url('../img/home/plant6.jpeg');
    position: relative;
    padding: 15em 3em 15em;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.care-content {
    color: var(--primary-color);
    background: none;
    padding: 10px;
    text-align: center;
    width: 40%;
}


.care-content button {
    background-color: var(--background-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 30px;
    border: none;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;
}

.care-content button:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.pickup-info {
    position: relative;
    height: 500px;
}

.pickup-info-overlay {
    position: absolute;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    padding: 10px 20px;
    text-align: center;
    margin-right: 60px;
}

.pickup-info h2 {
    color: var(--background-color);
    background: none;
    font-size: 40px;
    text-align: center;
}

.pickup-info p {
    color: var(--background-color);
    background: none;
    font-size: 20px;
    padding-bottom: 15px;
}

.pickup-info-overlay button {
    background-color: var(--background-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 30px;
    border: none;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;

}

.pickup-info-overlay button:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.pickup-info iframe {
    width: 100%;
    height: 550px;
    border: 0;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 50px;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
}

.footer-nav {
    list-style: none;
    margin-right: 40px;
}

.footer-nav li {
    margin-bottom: 30px;
    margin-top: 30px;
}

.footer-upper {
    text-transform: uppercase;
}

.footer-social-and-rights {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-and-rights p {
    color: var(--primary-color);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: inline-block;
    color: inherit;
    transition: transform 0.2s ease-in-out;
}

.footer-links li a:hover {
    color: var(--accent-color);
}

.footer-socials a:hover {
    transform: scale(1.1);
}

.search-form {
    display: flex;
    align-items: center;
}

.search-form input,
.search-form button {
    height: 35px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.search-form input {
    background-color: var(--header-text-color);
    border: 2px solid #ccc;
}

.search-form button {
    background-color: var(--accent-color);
    color: var(--background-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;
}

.search-form button:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.footer-right {
    margin-top: -5rem;
}

.payment-methods {
    font-size: 20px;
    text-align: end;
}

.company-name {
    font-size: 30px;
    font-weight: bold;
    color: var(--accent-color);
    text-align: end;
}

.hero-content h1,
.promo-content h1,
h3,
.care-content h1,
h3 {
    color: var(--header-text-color);
}

/* Blog Section Styling */
.blog-hero {
    position: relative;
    height: 550px;
    background-image: url('../img/home/plant3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
}

.blog-content {
    padding: 20px;
    text-align: center;
    max-width: 1800px;
    margin: auto;
}

.blog-pottedposts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    padding: 20px;
}

.pottedpost {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.pottedpost img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*product page*/
#main-image {
    width: 1000px;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-subImage {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.image-subImage img {
    width: 100px;
    margin: 0 5px;
    align-items: start;
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.image-subImage img:hover {
    transform: scale(1.1);
}

/*product page*/
.product-display {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
}

.product-details {
    display: flex;
    flex-direction: column;
    padding: 50px 150px 180px 50px;
}

.product-details h2 {
    text-align: start;
    font-size: 40px;
}

.product-details h3 {
    text-align: start;
    text-transform: uppercase;
    color: var(--primary-color);
}

.image-other {
    display: flex;
    justify-content: start;
    margin-top: 10px;
}

.image-other img {
    width: 100px;
    margin: 0 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.image-other img:hover {
    transform: scale(1.1);
}


.image-other img {
    width: 100px;
    margin: 10px;
    cursor: pointer;
}

.product-details h1 {
    text-align: start;
    text-transform: capitalize;
    font-size: 65px;
}


.product-details p {
    color: var(--primary-color);
    text-align: left;
    padding-bottom: 10px;
}

.rating {
    padding-bottom: 20px;
}

.rating-star {
    font-size: 30px;
}

.button1 .add-to-cart {
    background: none;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: small;
    width: 100%;
    margin-bottom: 10px;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;
}

.button2 .buy-now {
    background-color: var(--accent-color);
    color: var(--text-color);
    width: 100%;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;
}


.button1:hover .add-to-cart {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.button2:hover .buy-now {
    background-color: var(--hover-color);
    color: var(--hover-text-color);
}

.product-container h2 {
    text-align: center;
    padding: 20px;
    font-size: 50px;
}


/*contact page*/
.contact-hero {
    position: relative;
    height: 550px;
    background-image: url('../img/home/plant4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 50px;
}

/* Contact section styling */
.contact-container {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.input-group label {
    font-size: 16px;
    margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
    padding: 10px;
    background: #222;
    color: #fff;
    border-radius: 4px;
}

.input-group textarea {
    height: 400px;
}

.contact-container button {
    padding: 5px 30px;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

/*shop page*/
.shop-hero {
    position: relative;
    height: 800px;
    background-image: url('../img/shop/shop-top-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.shop-bottom-hero {
    position: relative;
    height: 800px;
    background-image: url('../img/shop/shop-bottom-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
}

.shop-hero-content {
    background: none;
    padding: 10px;
    text-align: center;
}

.shop-bottom-hero-content {
    background: none;
    padding: 10px;
    text-align: center;
}


.shop-hero-content h1,
.shop-bottom-hero-content h2 {
    background: none;
    color: var(--shop-header-text-color);
}

.shop-bottom-hero-content p {
    background: none;
    color: var(--shop-header-text-color);
    font-size: large;
    margin-bottom: 20px;
}

.shop-hero-content button {
    background-color: var(--background-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 25px;
    border: none;
    transition: background-color 0.8s ease, color 0.8s ease, border-radius 0.8s ease;
}

.shop-hero-content button:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.shop-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Ensures space distribution between elements */
}

.shop-header-content h2 {
    display: flex;
    justify-content: flex-end;
    margin-right: 5rem;
    flex: 1;
}

.gift-nav {
    display: flex;
    text-transform: uppercase;
    font-weight: 700;
}

.view-links {
    margin-top: 0.55rem;
}

.gift-nav a {
    color: grey;
    text-decoration: none;
    padding: 10px 0px 0px 10px;
    margin-right: 10px;
}

.gift-nav a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.gift-nav a:not(:last-child)::after {
    content: "|";
    color: grey;
    padding-left: 15px;
}

.gift-nav a[href^="#view"]:after {
    content: none;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
    align-items: start;
}

.plant-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 550px;
    margin: 5px;
    overflow: hidden;
}

.plant-item img {
    object-fit: cover;
}

.description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5px;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.meta {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 0.8em;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
}

.name {
    font-size: larger;
}

.price {
    font-size: 2em;
}

.ratings {
    font-size: 2em;
}

.reviews {
    margin-top: 0.8rem;
}

.selected-items {
    display: flex;
    background-color: #3b3a3a;
    min-height: 500px;
    min-width: 800px;
}

.selected-item {
    position: relative;
    width: 120px;
    height: 150px;
    overflow: hidden;
}

.selected-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-item .remove-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    background-color: black;
    color: white;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 20px;
    height: 20px;
    font-size: 16px;
}

/*style for theme toggle button*/

.theme-toggle {
    color: var(--primary-color);
    background: var(--background-color);
    font-size: 20px;
}

/*about page*/
.about-hero-image {
    height: 100vh;
    width: 100vw;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url('../img/about/about-heroImg.jpg');
}

.about-hero {
    position: absolute;
    height: 100%;
    width: 100%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero h1 {
    font-size: 65px;
    letter-spacing: 0px;
    margin: 0 0 5px;
}

.about-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.about-feature:nth-child(odd) .about-feature-image {
    order: 2;
}

.about-feature-image {
    flex: 1;
    overflow: hidden;
    margin-left: 5rem;
}

.about-feature-image img {
    width: 90%;
    height: auto;
    justify-content: center;
    object-fit: cover;
}

.about-feature-text {
    flex: 1;
    padding: 0;
    font-size: 20px;
    line-height: 10;
    margin-right: 2rem;
}

/*privacy page & legal page*/
.privacy-content,
.legal-content {
    max-width: 75%;
    margin: 40px auto;
    padding: 20px;
}

.privacy-content h1,
.legal-content h1 {
    font-size: 40px;
    color: var(--footer-page-text-color);
    text-align: start;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.privacy-content h2,
.legal-content h2 {
    font-size: 18px;
    color: var(--footer-page-text-color);
    margin-bottom: 2rem;
    text-align: start;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.privacy-content p,
.legal-content p {
    font-size: 18px;
    color: var(--footer-page-text-color);
    margin-bottom: 2rem;
    text-align: start;
    font-family: 'Montserrat', sans-serif;
}

.privacy-content a,
.legal-content a {
    text-decoration: none;
}

.privacy-content ul {
    padding-left: 20px;
}

.privacy-content span,
.legal-content span {
    text-transform: lowercase;
}

@media (min-width: 375px) and (max-width: 576px) {

    body {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 15px;
    }

    .hero,
    .care-tips,
    .promo-section,
    .shop-hero,
    .shop-bottom-hero,
    .contact-hero {
        background-size: cover;
        background-position: center;
        justify-content: center;
        padding: 3em 2em;
        background-repeat: no-repeat;
    }

    .hero-content,
    .care-tips,
    .shop-hero-content {
        text-align: center;
    }

    .hero-content button {
        padding: 5px 20px;
    }

    .logo a {
        margin: 20px 0 0 10px;
    }

    .slideshow-controls {
        margin-right: 8rem;
    }

    .category img {
        width: 100%;
        height: 100%;
    }

    .promo-section .promo-content,
    .care-tips .care-content {
        width: 100%;
        padding: 20px;
    }

    .shop-items {
        grid-template-columns: 1fr;
    }

    .blog-posts {
        flex-direction: column;
    }

    .blog-posts .post {
        width: 100%;
    }

    .blog-content h1 {
        font-size: xx-large;
    }

    .blog-pottedposts {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    }

    .potted-content-overlay h2 {
        font-size: large;
    }

    .potted-content-overlay p {
        font-size: medium;
    }

    .potted-content-overlay button {
        font-size: small;
        padding: 5px 5px;
    }


    .pickup-info {
        height: auto;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .content-overlay h2,
    .content-overlay p,
    .content-overlay button {
        font-size: medium;
    }

    .pickup-info-overlay {
        width: 80%;
        height: auto;
        top: 30%;
        left: 10%;
        transform: translateY(0);
    }

    .pickup-info-overlay h2,
    .pickup-info-overlay p,
    .pickup-info-overlay button {
        font-size: large;
    }

    .payment-methods,
    .company-name {
        text-align: center;
    }

    .footer-links,
    .search-form {
        justify-content: center;
    }

    .search-form input,
    .search-form button {
        width: 70%
    }

    .footer-social-and-rights {
        display: flex;
        flex-direction: column;
    }

    .footer-right {
        margin-top: 2rem;
    }

    .fa-bars,
    .fa-times {
        position: absolute;
        right: 0;
    }

    .fa-bars {
        visibility: visible;
    }

    .fa-times {
        visibility: hidden;
    }

    .nav-socials,
    .nav-links,
    .currency-select,
    .nav-icons {
        display: none;
    }

    /* Toggle visibility when menu is active */
    /* General styles for the active menu */
    .active {
        background-color: transparent;
        color: var(--primary-color);
    }

    .active .nav-icons {
        display: none;
    }

    .active .nav-links {
        display: flex;
        flex-direction: row;
        margin-top: 3rem;
    }

    .submenu-container img {
        display: none;
    }

    .feature {
        flex-direction: column;
        padding-top: 10px;
    }

    .feature-image {
        gap: 5px;
    }

    .feature-image {
        order: 1;
        flex: none;
        width: 100%;
    }

    .feature-text {
        position: absolute;
        padding: 1rem 0rem 1rem 0rem;
        margin-top: 1rem;
        width: 90%;
        height: 30%;
        background: rgba(0, 0, 0, 0.5);
    }

    .feature-text h2 {
        font-size: x-large;
        margin: 0;
    }

    .feature-text p {
        font-size: small;
        margin: 0;
    }

    /*contact page*/

    .contact-container {
        width: 100%;
        max-width: 900px;
        margin: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .contact-container h1 {
        font-size: xx-large;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-container form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .input-row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }

    .input-group label {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .input-group input,
    .input-group textarea {
        padding: 10px;
        background: #222;
        border: 1px solid #444;
        color: #fff;
        border-radius: 4px;
    }

    .input-group textarea {
        height: 200px;
    }

    .contact-container button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        align-self: center;
    }

    /* shop page*/
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .shop-header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shop-header-content h2 {
        font-size: xx-large;
    }

    .gift-nav {
        display: flex;
        flex-direction: column;
    }

    .view-links {
        display: flex;
        flex-direction: row;
    }

    .gift-nav a:not(:last-child)::after {
        display: none;
    }

    .shop-hero-content h1,
    .shop-bottom-hero-content h2 {
        color: var(--media-shop-hero-textColor);
    }

    .shop-header-content h2 {
        margin-left: 4rem;
    }

    /*product page*/
    .product-display {
        flex-direction: column;
        align-items: center;
    }

    .product-details {
        padding: 10px;
    }

    .product-details h1 {
        font-size: 8vw;
    }

    .button1 .add-to-cart,
    .button2 .buy-now {
        font-size: medium;
    }

    .selected-items {
        min-height: 500px;
        min-width: 100%;
    }

    .image-other {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .about-feature {
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .about-feature:nth-child(even) .about-feature-image {
        order: 1;
    }

    .about-feature-image {
        flex: 1;
        overflow: hidden;
        margin-left: 3rem;
    }

    .about-feature-image img {
        width: 90%;
        height: auto;
        justify-content: center;
        object-fit: cover;
    }

    .about-feature-text {
        flex: 1;
        font-size: 20px;
        margin-left: 3rem;
    }

    /*legal an privacy page*/
    .privacy-content h1,
    .legal-content h1,
    .privacy-content h2,
    .legal-content h2,
    .privacy-content p,
    .legal-content p,
    .privacy-content,
    .legal-content {
        text-align: center;
    }
}

/*small device*/
@media (min-width: 577px) and (max-width: 767px) {

    body {
        line-height: 1.5;
        padding: 0 15px;
    }

    .hero,
    .care-tips,
    .promo-section,
    .shop-hero,
    .shop-bottom-hero {
        background-size: cover;
        background-position: center;
        justify-content: center;
        padding: 3em 2em;
        background-repeat: no-repeat;
    }

    .hero-content,
    .care-tips,
    .shop-hero-content {
        text-align: center;
    }

    .hero-content button {
        padding: 5px 20px;
    }

    .logo a {
        margin: 20px 0 0 10px;
    }

    .category img {
        width: 100%;
        height: 100%;
    }

    .promo-section .promo-content,
    .care-tips .care-content {
        width: 100%;
        padding: 20px;
    }

    .shop-items {
        grid-template-columns: 1fr;
    }

    .blog-posts {
        flex-direction: column;
    }

    .blog-posts .post {
        width: 100%;
    }

    .blog-pottedposts {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .potted-content-overlay h2 {
        font-size: large;
    }

    .potted-content-overlay p {
        font-size: medium;
    }

    .potted-content-overlay button {
        font-size: small;
        padding: 5px 5px;
    }

    .feature {
        flex-direction: column;
        padding-top: 10px;
    }

    .feature-image {
        gap: 5px;
    }

    .feature-image,
    .feature-text {
        order: 1;
        flex: none;
        width: 100%;
    }

    .feature-text {
        position: absolute;
        justify-content: center;
        margin-top: 1rem;
        width: 90%;
        height: 30%;
        background: rgba(0, 0, 0, 0.5);
    }

    .feature-text h2 {
        font-size: x-large;
    }

    .feature-text p {
        font-size: small;
    }

    .pickup-info {
        height: auto;
    }

    .pickup-info-overlay {
        width: 80%;
        height: auto;
        padding: 10px;
        top: 20%;
        transform: translateY(0);
    }

    .payment-methods,
    .company-name {
        text-align: center;
    }

    .footer-links,
    .search-form {
        justify-content: center;
    }

    .footer-social-and-rights {
        display: flex;
        flex-direction: column;
    }

    .footer-right {
        margin-top: 2rem;
    }

    .nav-icons {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fa-bars,
    .fa-times {
        position: absolute;
        right: 0;
    }

    .fa-bars {
        visibility: visible;
    }

    .fa-times {
        visibility: hidden;
    }

    .nav-socials,
    .nav-links,
    .currency-select {
        display: none;
    }

    .toggleMenu {
        margin: 0rem 0rem 1rem 1rem;
    }

    /* Toggle visibility when menu is active */
    /* General styles for the active menu */
    .active {
        background-color: transparent;
        color: var(--primary-color);
    }

    .active .nav-icons {
        display: none;
    }

    .active .nav-links {
        display: flex;
        flex-direction: row;
        margin-left: 4rem;
    }

    .submenu-container img {
        display: none;
    }

    /*contact page*/
    .contact-container {
        width: 100%;
        max-width: 900px;
        margin: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .contact-container h1 {
        font-size: xx-large;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-container form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .input-row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }

    .input-group label {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .input-group input,
    .input-group textarea {
        padding: 10px;
        background: #222;
        border: 1px solid #444;
        color: #fff;
        border-radius: 4px;
    }

    .input-group textarea {
        height: 200px;
    }

    .contact-container button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        align-self: center;
    }

    /* shop page*/
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .shop-header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shop-hero-content h1,
    .shop-bottom-hero-content h2 {
        color: var(--media-shop-hero-textColor);
    }

    .gift-nav {
        display: flex;
        flex-direction: column;
    }

    .view-links {
        display: flex;
        flex-direction: row;
    }

    .gift-nav a:not(:last-child)::after {
        display: none;
    }

    .shop-header-content h2 {
        margin-left: 4rem;
    }

    /*product page*/
    .product-display {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-details {
        padding: 10px;
    }

    .product-details h1 {
        font-size: 8vw;
    }

    .button1 .add-to-cart,
    .button2 .buy-now {
        font-size: medium;
    }

    .selected-items {
        min-height: 500px;
        min-width: 112%;
    }

    .about-feature {
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .about-feature:nth-child(even) .about-feature-image {
        order: 1;
    }

    .about-feature-image {
        flex: 1;
        overflow: hidden;
        margin-left: 3rem;
    }

    .about-feature-image img {
        width: 90%;
        height: auto;
        justify-content: center;
        object-fit: cover;
    }

    .about-feature-text {
        flex: 1;
        font-size: 20px;
        margin-left: 3rem;
    }

    /*legal an privacy page*/
    .privacy-content h1,
    .legal-content h1,
    .privacy-content h2,
    .legal-content h2,
    .privacy-content p,
    .legal-content p,
    .privacy-content,
    .legal-content {
        text-align: center;
    }
}

/*medium to large device*/
@media (min-width: 768px) and (max-width: 992px) {
    body {
        line-height: 1.5;
        padding: 0 15px;
    }

    .hero,
    .care-tips,
    .promo-section,
    .shop-hero,
    .shop-bottom-hero {
        background-size: cover;
        background-position: center;
        justify-content: center;
        padding: 3em 2em;
        background-repeat: no-repeat;
    }

    .hero-content,
    .care-tips,
    .shop-hero-content {
        text-align: center;
    }

    .hero-content button {
        padding: 10px 25px;
    }

    .logo a {
        margin: 20px 0 0 20px;
    }

    .category img {
        width: 100%;
        height: auto;
    }

    .promo-section .promo-content,
    .care-tips .care-content {
        width: 100%;
        padding: 20px;
    }

    .shop-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature {
        flex-direction: column;
        padding-top: 10px;
    }

    .feature-image {
        gap: 5px;
    }

    .feature-image,
    .feature-text {
        order: 1;
        flex: none;
        width: 100%;
    }

    .feature-text {
        position: absolute;
        justify-content: center;
        margin-top: 8rem;
        width: 90%;
        height: 30%;
        background: rgba(0, 0, 0, 0.5);
    }

    .feature-text h2 {
        font-size: x-large;
    }

    .feature-text p {
        font-size: small;
    }

    .blog-posts {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-pottedposts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .potted-content-overlay h2 {
        font-size: large;
    }

    .potted-content-overlay p {
        font-size: medium;
    }

    .potted-content-overlay button {
        font-size: small;
        padding: 5px 5px;
    }

    .post img {
        object-fit: cover;
    }

    .content-overlay {
        background: rgba(0, 0, 0, 0.5);
        padding: -2rem 1rem 2rem 0rem;
        text-align: center;
        transition: background-color 0.3s ease;
    }

    .content-overlay h2 {
        font-size: medium;
    }

    .content-overlay button {
        font-size: small;
    }

    .pickup-info {
        height: auto;
    }

    .pickup-info-overlay {
        width: 40%;
        height: auto;
        top: 20%;
        transform: translateY(0);
    }

    .payment-methods,
    .company-name {
        text-align: center;
    }

    .footer-links,
    .search-form {
        justify-content: center;
    }

    .footer-social-and-rights {
        display: flex;
        flex-direction: column;
    }

    .footer-right {
        margin-top: 1rem;
    }

    .nav-icons {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fa-bars,
    .fa-times {
        position: absolute;
        right: 10px;
    }

    .fa-bars {
        visibility: visible;
    }

    .fa-times {
        visibility: hidden;
    }

    .nav-socials,
    .nav-links,
    .currency-select {
        display: none;
    }

    .toggleMenu {
        margin: 0rem 0rem 1rem 2rem;
    }

    /* General styles for the active menu */
    .active {
        background-color: transparent;
        color: var(--primary-color);
    }

    .active .nav-icons {
        display: none;
    }

    .active .nav-socials {
        display: flex;
        position: absolute;
        top: 80%;
        gap: 4rem;
        font-size: 1rem;
    }

    .active .nav-links {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .submenu-container img {
        display: none;
    }

    /*contact page*/
    .contact-container {
        width: 100%;
        max-width: 900px;
        margin: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .contact-container h1 {
        font-size: xx-large;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-container form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .input-row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }

    .input-group label {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .input-group input,
    .input-group textarea {
        padding: 10px;
        background: #222;
        border: 1px solid #444;
        color: #fff;
        border-radius: 4px;
    }

    .input-group textarea {
        height: 200px;
    }

    .contact-container button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        align-self: center;
    }

    /* shop page */
    .shop-hero-content h1,
    .shop-hero-content h2 {
        width: 100%;
        text-align: center;
    }

    .shop-hero-content h1,
    .shop-bottom-hero-content h2 {
        color: var(--media-shop-hero-textColor);
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 25px;
    }

    .shop-header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .view-links {
        margin-top: 0.2rem;
    }

    .gift-nav a {
        font-size: 12px;
    }

    .shop-header-content h2 {
        margin-left: 5rem;
    }

    /*product page*/
    .product-display {
        flex-direction: column;
        align-items: center;
    }

    .product-details {
        padding: 10px;
    }

    .product-details h1 {
        font-size: 6vw;
    }

    .button1 .add-to-cart,
    .button2 .buy-now {
        font-size: larger;
    }

    .selected-items {
        min-height: 500px;
        width: auto;
    }

    .about-feature {
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .about-feature:nth-child(even) .about-feature-image {
        order: 1;
    }

    .about-feature-image {
        flex: 1;
        overflow: hidden;
        margin-right: 3rem;
    }

    .about-feature-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        justify-content: center;
    }

    .about-feature-text {
        flex: 1;
        font-size: 16px;
        margin-left: 4rem;
    }

    /*legal and privacy page*/
    .privacy-content h1,
    .legal-content h1,
    .privacy-content h2,
    .legal-content h2,
    .privacy-content p,
    .legal-content p,
    .privacy-content,
    .legal-content {
        text-align: center;
    }
}

/*large to xlarge device*/
@media (min-width: 993px) and (max-width: 1200px) {

    body {
        line-height: 1.5;
        padding: 0 15px;
    }

    .theme-toggle {
        margin-left: 1rem;
    }

    .hero,
    .care-tips,
    .promo-section,
    .shop-hero,
    .shop-bottom-hero {
        background-size: cover;
        background-position: center;
        justify-content: center;
        padding: 4em 3em;
        background-repeat: no-repeat;
    }

    .hero-content,
    .care-tips {
        text-align: center;
    }

    .hero-content button {
        padding: 12px 30px;
        /* Larger buttons for better interaction */
    }

    .logo a {
        margin: 20px auto;
        /* Center logo */
        display: block;
    }

    .category img {
        width: 100%;
        height: auto;
        /* Maintain aspect ratio */
    }

    .promo-section .promo-content,
    .care-tips .care-content {
        width: 100%;
        padding: 25px;
    }

    .shop-items {
        grid-template-columns: repeat(4, 1fr);
        /* Increase columns for shop items */
    }

    .blog-posts {
        flex-direction: row;
        /* Set blog posts side by side */
        justify-content: space-between;
    }

    .blog-pottedposts {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .potted-content-overlay h2 {
        font-size: large;
    }

    .potted-content-overlay p {
        font-size: medium;
    }

    .potted-content-overlay button {
        font-size: small;
        padding: 5px 5px;
    }

    .blog-posts .post {
        width: 32%;
        /* Adjust post width for three items per row */
    }

    .content-overlay {
        background: rgba(0, 0, 0, 0.5);
        transition: background-color 0.3s ease;
    }

    .content-overlay h2 {
        font-size: large;
        justify-content: center;
    }

    .content-overlay button {
        font-size: small;
    }

    .overlay {
        padding: 0 1rem 5rem;
    }

    .footer-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 1rem;
        /* Adds space between the links and the social icons */
    }

    /* Styling for social icons and payment methods to center them */
    .footer-social-and-rights {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: center;
    }

    .footer-right {
        margin-bottom: -10rem;
    }

    .payment-methods,
    .company-name {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        width: 100%;
    }

    .social-icons {
        margin-top: 1rem;
    }

    /* Centering the search form and making it fit content */
    .search-form {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin-top: 1rem;
    }

    .search-form form {
        width: 100%;
        max-width: 500px;
    }

    .subscribe-button {
        margin-top: 1rem;
        width: auto;
    }

    .copyright {
        text-align: center;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-icons {
        display: flex;
        justify-content: space-between;
    }

    .fa-bars,
    .fa-times {
        position: absolute;
        right: 20px;
        /* Adjust position for better accessibility */
    }

    .fa-bars {
        visibility: visible;
    }

    .fa-times {
        visibility: hidden;
    }

    .nav-socials,
    .nav-links,
    .currency-select {
        display: flex;
        justify-content: center;
    }

    .toggleMenu {
        display: none;
    }

    .submenu-container img {
        padding: 3rem 3rem;
    }

    .pickup-info {
        height: auto;
    }

    .pickup-info-overlay {
        width: 50%;
        height: auto;
        padding: 20px;
        top: 20%;
        transform: translateY(0);
    }

    /*contact page*/
    .contact-container {
        width: 100%;
        max-width: 900px;
        margin: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .contact-container h1 {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-container form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .input-row {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .input-group {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .input-group label {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .input-group input,
    .input-group textarea {
        padding: 10px;
        background: #222;
        border: 1px solid #444;
        color: #fff;
        border-radius: 4px;
    }

    .input-group textarea {
        height: 400px;
    }

    .contact-container button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        align-self: flex-start;
    }


    /* shop page */
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Adapt the shop grid for better layout */
        gap: 15px;
        padding: 20px;
    }

    .shop-header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shop-hero-content h1,
    .shop-bottom-hero-content h2 {
        color: var(--media-shop-hero-textColor);
    }

    .view-links {
        margin-top: 0.2rem;
    }

    .gift-nav a {
        font-size: 12px;
    }

    .shop-header-content h2 {
        margin-left: 2rem;
    }

    /*product page*/
    .product-display {
        flex-direction: column;
        align-items: center;
    }

    .product-details {
        padding: 10px;
    }

    .product-details h1 {
        font-size: 6vw;
    }

    .button1 .add-to-cart,
    .button2 .buy-now {
        font-size: larger;
    }

    .selected-items {
        min-height: 500px;
        width: 100%;
    }

    .about-feature {
        display: flex;
        margin-bottom: 2rem;
    }

    .about-feature:nth-child(odd) .about-feature-image {
        order: 1;
    }

    .about-feature-text {
        flex: 1;
        font-size: 16px;
        margin-left: 2.5rem;
    }

    /*legal and privacy page*/
    .privacy-content h1,
    .legal-content h1,
    .privacy-content h2,
    .legal-content h2,
    .privacy-content p,
    .legal-content p,
    .privacy-content,
    .legal-content {
        text-align: center;
    }
}