/********************************************************
 * Creator Reference
 * -----------------
 * Creator: JJ Borja
 * Company: Klete LLC
 * Version: 1.0.0
 * Date: April 6, 2025
 * Usage with approval only.
 *
 * Table of Contents
 * -----------------
 * 1. Global Styles
 * 2. Modal Styles (Sign-Up and Video Modal)
 * 3. Header Styles
 * 4. Hero Section
 * 5. Features Section
 * 6. Brand Section
 * 7. Details Section
 * 8. Comparison Section
 * 9. Testimonials Section
 * 10. Alt Header Section
 * 11. FAQ Section
 * 12. CTA Section
 * 13. Footer Styles
 * 14. Responsive Styles (Mobile Adjustments)
 ******************************************************/


/* Global Styles */
:root {
    --primary: #304338;
    --primary-light: #60ad5e;
    --primary-dark: #005005;
    --secondary: #f3eeea;
    --alt-color: #c6dfe9;
    --text: #333;
    --text-light: #666;
    --light: #efefef;
    --line: #bfbfbf;
    --white: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
}

h1, h2, h3, h4 {
    font-family: "Messina Serif", serif;
    color: var(--primary);
}

h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--primary);
}

h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 300;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 700;
}
h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
}
h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p, ul, li, a {
    margin: 0;
    color: var(--primary);
}

span {
    color: var(--primary);
    font-size: 1.1rem;
}

.bi::before {
    margin-right: 0.3rem;
}

.bi {
    font-size: 1.3rem;
    color: var(--primary);
}

.center {
    text-align: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    padding: 6px 40px;
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-white {
    display: inline-flex;
    padding: 6px 40px;
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    cursor: pointer;
}

.btn-white:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

section {
    padding: 5rem 0 7.5rem;
}

.section-title {
    font-size: 3em;
    margin-bottom: 2.5rem;
    color: var(--primary);
    text-align: center;
}

/* Sign-Up Modal (reuse video modal styling) */
/* Custom Modal Backdrop */
.modal-backdrop {
    background-color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease-in-out !important; /* Smooth transition for opacity */
}
.modal-backdrop.show {
    opacity: 0.7 !important;
    filter: brightness(0.8);
}

/* Form Styling */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.form-group input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 2px solid var(--line);
    background-color: var(--white);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(48, 67, 56, 0.3);
}

/* Header Styles */
header {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: box-shadow 0.3s ease; /* Smooth transition for the shadow */
}

.header-shadow {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    width: 200px;
    height: 50px;
    background-image: url("../images/primary_dark_RGB.webp");
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 0.7em;
}

/* Hero Section */
.hero {
    background-color: var(--secondary);
    padding: 10rem 0 4.5rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Text on left, image on right */
    align-items: center;
    gap: 40px;
}

.hero-text {
    padding: 20px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: cover;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.benefit-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-item i {
    color: var(--primary);
    margin-right: 10px;
}

/* Ensure the icon inherits the text color */
.btn-outline i {
    color: inherit; /* Icon inherits the button's text color */
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Features Section */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 20px 0 10px;
    color: var(--primary);
}

.feature-card-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Brand Section */
.brand {
    background-color: var(--primary);
}

.brand h2 {
    color: var(--white);
}

.brand .btn:hover {
    background-color: var(--secondary);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.logo-item {
    padding: 3px;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item:hover {
    transform: translateY(-10px);
}

.logo-item img {
    max-width: 100%;
    height: auto;
}

/* Details Section */
.details {
    background-color: var(--white);
    padding: 5rem 0 7.5rem;
}

.details h2.center {
    position: relative; /* Allow z-index to take effect */
    z-index: 2; /* Above the background box */
}

.details-content {
    margin-top: 100px;
    position: relative; /* For positioning the background box */
}

/* Background box behind both rows */
.details-content::before {
    content: '';
    position: absolute;
    top: -3.25rem; /* 50px above Row 1 */
    bottom: -3.25rem; /* 50px below Row 2 */
    left: 0;
    width: 60%; /* Cover 60% of the width */
    background-color: var(--secondary); /* #f3eeea */
    z-index: 0; /* Behind the rows and h2 */
    /* Align right edge with Row 2's image */
    right: 0;
    transform: translateX(calc(80% - 80px)); /* Adjust for container padding and image width */
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative; /* For z-index stacking */
    z-index: 1; /* Above the background box */
}

/* Row 2: Add padding and specific styling */
.detail-row:nth-child(2) {
    padding: 3.75rem 0; /* 60px padding above and below for Row 2 */
}

.detail-text {
    padding: 20px;
}

.detail-text h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.detail-text h5 {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.detail-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.detail-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: cover;
}

/* Row 1 Specific Styling */
.detail-row:nth-child(1) .detail-text {
    background-color: transparent;
}

.detail-row:nth-child(1) .detail-text a {
    background-color: var(--primary);
    color: var(--white);
}

/* Row 2 Specific Styling */
.detail-row:nth-child(2){
    display: flex;
    position: relative; /* Establish positioning context */
}
.detail-row:nth-child(2) .detail-text {
    background-color: var(--primary);
    color: var(--white);
    padding: 10rem 20rem 10rem 5rem; /* Increased padding on top/bottom to extend beyond the image (80px) */
    width: calc(80% - 3.75rem); /* Underlap the image by 60px (3.75rem) */
    position: relative;
    z-index: 1; /* Below the image */
}

.detail-row:nth-child(2) .detail-text h3,
.detail-row:nth-child(2) .detail-text h5,
.detail-row:nth-child(2) .detail-text p {
    color: var(--white);
}

.detail-row:nth-child(2) .detail-text a {
    background-color: var(--white);
    color: var(--primary);
}

.detail-row:nth-child(2) .detail-image {
    width: 50%;
    position: absolute;
    right: -60px;
    top: 7rem;
    height: auto;
    overflow: hidden;
    z-index: 2; /* Higher than text to overlap */
}

/* Comparison Section */
.comparison {
    background-color: var(--secondary);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid var(--line);
    border-right: 2px solid var(--line);
    text-align: center;
}

.comparison-table th {
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0,0,0,0.02);
}

.highlight {
    border-left: 7px solid var(--primary) !important;
    border-right: 7px solid var(--primary) !important;
}

.highlight-top {
    border-top: 7px solid var(--primary) !important;
}

.highlight-bottom {
    border-bottom: 7px solid var(--primary) !important;
}

.comparison-table tr:nth-child(last-child) {
    border-bottom: 2px solid var(--primary);
}

.last {
    border-right: none !important;
}

.checkmark {
    color: var(--primary);
    font-weight: normal;
    font-style: italic;
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.static-stars {
    display: inline-block;
    font-size: 0;
    position: relative;
    letter-spacing: 2px;
    padding: 10px;
}

.static-stars span {
    font-size: 1.5rem;
    color: var(--primary);
    display: inline-block;
}

.static-stars::after {
    content: '★★★★★';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(20% * var(--rating, 0));
    font-size: 1.5rem;
    color: gold;
    overflow: hidden;
    white-space: nowrap;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-name {
    font-weight: bold;
}

.client-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Alt Header Section */
.alt-header {
    background-color: var(--alt-color);
    padding: 5rem 0 4.5rem;
}

.alt-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Image on left, text on right */
    align-items: center;
    gap: 40px;
}

.alt-header-text {
    padding: 20px;
}

.alt-header-image {
    text-align: center;
}

.alt-header-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: cover;
}

.alt-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
}

.alt-header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.alt-header-buttons {
    display: flex;
    gap: 20px;
}

.alt-header-list {
    margin: 30px 0;
}

.alt-header-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.alt-header-item i {
    color: var(--primary);
    margin-right: 10px;
}

/* FAQ Section */
.faq {
    background-color: var(--secondary);
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary);
}

/* CTA Section */
.cta {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 5rem 0 7.5rem;
}

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* Enhanced CTA Button */
.cta-btn {
    display: inline-flex;
    padding: 1rem 3rem; /* Larger padding for a bigger button */
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem; /* Larger text for readability */
    font-weight: 700; /* Bold text */
    background-color: var(--white); /* White background for contrast */
    color: var(--primary); /* Primary color text */
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--white); /* White border */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    animation: pulse 2s infinite ease-in-out; /* Pulse animation to draw attention */
}

/* Hover Effect */
.cta-btn:hover {
    background-color: var(--primary-light); /* Lighter primary color on hover */
    color: var(--white); /* White text on hover */
    border-color: var(--primary-light); /* Match border to background */
    transform: scale(1.05); /* Slight scale-up effect */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Footer */
footer {
    background-color: #222;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.logo-light {
    width: 300px;
    height: 100px;
    background-image: url("../images/primary_light_RGB.webp");
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 0.7em;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
}

.copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--white);
    padding: 1rem 0;
}

.copyright ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.copyright .menu-item {
    display: inline-block;
}

.copyright .menu-item a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright .menu-item a:hover {
    color: var(--light);
    text-decoration: underline;
}

.copyright .menu-item:not(:last-child)::after {
    content: "|";
    margin-left: 1rem;
    color: #ccc;
}

/* Responsive Styles */
/* Mobile Adjustments */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }

    .form-group input {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .signup-form {
        gap: 1rem;
    }

    .cta-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

/* Header - Mobile */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .logo {
        margin-top: 0.5em;
        width: 150px;
        height: 40px;
    }

    .btn {
        padding: 5px 20px;
        font-size: 0.9rem;
    }
}

/* Hero Section - Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 20px;
    }

    .hero-text {
        padding: 10px;
        text-align: center; /* Center text for better mobile display */
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* Features Section */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card-icon {
        font-size: 3rem;
        height: 80px;
        width: 80px;
    }
}

/* Brand Section - Mobile */
@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: 1fr; /* Stack logos vertically */
        gap: 20px; /* Reduce gap for mobile */
    }

    .logo-item {
        padding: 20px; /* Add padding to center the logo nicely */
        height: auto; /* Remove fixed height to allow natural sizing */
    }

    .logo-item img {
        max-width: 150px; /* Limit logo size for consistency */
    }
}

/* Details Section - Mobile */
@media (max-width: 768px) {
    .details-content {
        margin-top: 30px; /* Reduced margin for mobile */
    }

    .details-content::before {
        width: 100%; /* Full width on mobile */
        transform: none; /* Reset transform on mobile */
        top: -2rem; /* 32px above Row 1 on mobile */
        bottom: -2rem; /* 32px below Row 2 on mobile */
    }

    .detail-row {
        display: grid; /* Revert to grid for consistent stacking */
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 20px;
    }

    .detail-row:nth-child(2) {
        display: block; /* Remove flex for mobile to allow natural stacking */
        padding: 1rem 0; /* Reduced padding for mobile */
        position: relative; /* Maintain positioning context */
    }

    .detail-row:nth-child(2) .detail-text {
        padding: 2rem 1rem; /* Reduced padding for mobile (32px top/bottom, 16px left/right) */
        width: 100%; /* Full width on mobile */
        position: static; /* Remove positioning for natural flow */
    }

    .detail-row:nth-child(2) .detail-image {
        width: 100%; /* Full width on mobile */
        position: static; /* Remove absolute positioning for natural flow */
        top: auto;
        right: auto;
        overflow: visible; /* Reset overflow */
    }

    .detail-text {
        padding: 10px;
        text-align: center;
        width: 100%; /* Reset width on mobile */
    }

    .detail-text h3 {
        font-size: 1.5rem;
    }

    .detail-text h5 {
        font-size: 1rem;
        margin-bottom: 1.5rem; /* Adjusted for mobile */
    }

    .detail-text p {
        font-size: 0.9rem;
    }

    .detail-image img {
        max-width: 100%;
    }
}

/* Comparison Section */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .comparison-table th {
        font-size: 1rem;
    }
}

/* Testimonials Section */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 20px;
    }

    .static-stars span {
        font-size: 1.2rem;
    }

    .client-info img {
        width: 40px;
        height: 40px;
    }
}

/* Alt Header Section - Mobile */
@media (max-width: 768px) {
    .alt-header {
        padding: 6rem 0 3rem;
    }

    .alt-header-content {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 20px;
    }

    .alt-header-text {
        padding: 10px;
        text-align: center; /* Center text for better mobile display */
    }

    .alt-header h2 {
        font-size: 2rem;
    }

    .alt-header p {
        font-size: 1rem;
    }

    .alt-header-buttons {
        justify-content: center;
    }

    .alt-header-image img {
        max-width: 100%;
    }
}

/* FAQ Section */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}

/* CTA Section - Mobile */
@media (max-width: 768px) {
    .cta {
        padding: 3rem 0 4rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 0.75rem 2rem; /* Slightly smaller padding for mobile */
        font-size: 1rem; /* Slightly smaller text for mobile */
    }
}

/* Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .logo-light {
        width: 200px;
        height: 60px;
    }

    .copyright {
        flex-direction: column;
        text-align: center;
    }

    .copyright ul {
        flex-direction: column;
        gap: 10px;
    }

    .copyright .menu-item:not(:last-child)::after {
        display: none;
    }
}

/* General Section Padding and Typography */
@media (max-width: 768px) {
    section {
        padding: 3rem 0 4rem;
    }

    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    h5 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }
}
