*{
    font-family: 'SUSE', Arial, Helvetica, sans-serif;
}*

/* Base styles for all headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold !important;
    text-transform: uppercase !important;
    font-family: "Playfair Display", serif !important;
    letter-spacing: .08rem !important;
}

/* Desktop styles */
h1 {
    font-size: 2.125rem; /* 34px */
    line-height: 1; /* 34px */
    letter-spacing: -0.0625rem; /* -1px */
}
h2 {
    font-size: 1.875rem; /* 30px */
    line-height: 1.067; /* 32px */
    letter-spacing: -0.05rem; /* -0.8px */
}
h3 {
    font-size: 1.5rem; /* 24px */
    line-height: 1.083; /* 26px */
    letter-spacing: -0.0375rem; /* -0.5px */
}
h4 {
    font-size: 1.25rem; /* 20px */
    line-height: 1.1; /* 22px */
    letter-spacing: -0.025rem; /* -0.4px */
}
h5 {
    font-size: 1.125rem; /* 18px */
    line-height: 1.111; /* 20px */
    letter-spacing: -0.0125rem; /* -0.2px */
}
h6 {
    font-size: 1rem; /* 16px */
    line-height: 1.125; /* 18px */
    letter-spacing: -0.00625rem; /* -0.1px */
}
/* Tablet styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.125rem; /* 34px */
    }
    h2 {
        font-size: 1.5rem; /* 24px */
    }
    h3 {
        font-size: 1.25rem; /* 20px */
    }
    h4 {
        font-size: 1.125rem; /* 18px */
    }
    h5 {
        font-size: 1rem; /* 16px */
    }
    /* h6 remains the same as desktop */
}
/* Mobile styles */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem; /* 24px */
    }
    h2 {
        font-size: 1.125rem; /* 18px */
    }
    h3 {
        font-size: 1.125rem; /* 18px */
    }
    /* h4, h5, and h6 remain the same as tablet */
}
[x-cloak] {
    display: none !important;
}

/* Background Colors */
.darker-green{
    background-color: #465222;
}
.dark-green{
    background-color: #5e7132;
}
.green{
    background-color: #889f42;
}
.light-green{
    background-color: #c7d59b;
}
.lighter-green{
    background-color: #d9e3bb;
}
.service-gradient{
    background: rgb(94,113,50);
    background: linear-gradient(180deg, rgba(94,113,50,0) 0%, rgba(94,113,50,1) 100%);
}
.beige-light{
    background-color: #FFF4E6;
}
.beige-lighter{
    background-color: #FFF6F6;
}
.beige-classic {
    background-color: #E8DED0;
}

/* Background Colors Hover */
.hover-dark-green:hover{
    background-color: #5e7132;
}
.hover-darker-green:hover{
    background-color: #465222;
}
.hover-green:hover{
    background-color: #889f42;
}

/* Text Colors */
.darker-color-green {
    color: #465222;
}
.dark-color-green{
    color: #5e7132;
}
.color-green{
    color: #889f42;
}
.lighter-color-green{
    color: #d9e3bb;
}
.color-beige-classic {
    color: #E8DED0;
}

/* Text Colors Hover */
.hover-color-darker-green:hover{
    color: #465222;
}

/* Border Colors */
.dark-border-green{
    border-color: #5e7132;
}
.border-green{
    border-color: #889f42;
}
.darker-border-green{
    border-color: #465222;
}
.border-beige-classic{
    border-color: #E8DED0;
}