*, *::after, *::before {
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #FFFFFF, #E7E2D8);
}

.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.home-container {
    background-color: white;
}

.policy-container {
    background-color: #f9f9f9;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 40px 0; /* Add padding to the sections */
}

.secondary-hero {
    background-color: #f0f0f0;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    max-width: 50%; /* Ensures each hero content takes up the same width */
}

.hero-image, .hero-content {
    flex: 1;
    min-width: 300px;
}

.quote-image {
    display: block;
    margin: 20px auto 0; /* Center the image below the quote */
    max-width: 25px; /* Smaller image size */
    max-height: 25px; /* Maintain square dimensions */
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.styled-quote {
    position: relative;
    padding: 20px;
    margin: 20px;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    border-left: 4px solid #44D6D5;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px; /* Limit the width for better readability */
}

.styled-quote p {
    margin: 0;
    padding: 10px 20px;
    text-align: justify;
}

.responsive-qr-code {
    width: 25vw;  /* Adjust the size as needed */
    height: 25vh;  /* Ensure the image is square */
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.show-qr-btn {
    padding: 10px 20px;
    background-color: #44D6D5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
}

.show-qr-btn:hover {
    background-color: #44D6D5;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px auto;
    display: none; /* Initially hidden */
}


.responsive-image {
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

.mobile-link {
    margin-top: 10px;
    align-items: center;
}

.whatsapp-button {
    width: 400px;
    height: auto;
    align-items: center;
}

.navbar, .footer {
    width: 100%;
    margin: 0;
}

.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-logo {
    height: 100px;
    width: auto;
}

.navbar nav {
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    margin-right: 10px;
}

.navbar a:hover {
    color: #44D6D5;
}

.video-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.custom-video {
    width: 100%; /* Ensure the video takes up the full width of its container */
    max-width: 315px; /* Set a maximum width for larger screens */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Shadow for depth */
    object-fit: cover; /* Ensures the video fills the specified dimensions */
}


.footer {
    background-color: #f8f9fa;
    padding: 20px;
    border-top: 1px solid #e7e7e7;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

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

.footer-links a {
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-info {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-info {
        text-align: left;
    }

    .container {
        padding-bottom: 80px;
    }

    .hero-section, .secondary-hero {
        flex-direction: column;
        padding: 20px 10px;  /* Reduce padding on mobile view */
    }

    .hero-content {
        text-align: center;
        padding: 10px;  /* Reduce padding on mobile view */
        max-width: 100%;  /* Allow the hero content to take full width */
    }

    .quote-author-image {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }

    .styled-quote {
        padding: 10px;  /* Reduce padding on mobile view */
        margin: 10px 0;  /* Adjust margin as needed */
        font-size: 1rem;  /* Reduce font size for better readability */
        line-height: 1.4;  /* Adjust line height for better spacing */
        max-width: 100%;  /* Allow the quote to take full width */
        box-sizing: border-box;  /* Ensure padding and border are included in the width */
    }

    .styled-quote p {
        padding: 5px 10px;  /* Adjust inner padding for paragraphs */
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    color: #333;
}

p {
    font-family: 'Quicksand', sans-serif;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

a {
    color: #44D6D5;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

button, input, select, textarea {
    font-family: 'Quicksand', sans-serif;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #44D6D5;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
