body {
    font-family: 'Lato', sans-serif;
    color: #333333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #212529;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #4CAF50;
    border-radius: 2px;
}

.bg-light-green {
    background-color: #f0f7ed;
}

.bg-light-green-subtle {
    background-color: #f8fcf7;
}

.text-primary {
    color: #4CAF50 !important;
}

.btn-primary {
    background-color: #4CAF50;
    border-color: #4CAF50;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #388E3C;
    border-color: #388E3C;
}

.btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #4CAF50;
    border-color: #ffffff;
}

.custom-btn-primary {
    text-decoration: none;
}

.custom-btn-outline {
    text-decoration: none;
}


.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}


.logo-img {
    height: 40px;
    width: auto;
}

.site-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #4CAF50;
}

.navbar{
    background-color: #212529 !important;
}

.navbar-brand .site-title {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #4CAF50;
}

.hero-section {
    background-image: url('/public/photos/uploads/natural-background_3.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px; 
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn-lg {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    .hero-content .d-flex.flex-column.flex-md-row {
        flex-direction: column !important;
    }
}

.about-list .material-symbols-outlined {
    font-size: 2rem;
    line-height: 1.5;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.advantage-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.advantage-card .material-symbols-outlined {
    font-size: 3.5rem;
}

.component-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.application-steps {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.application-steps .material-symbols-outlined {
    font-size: 1.8rem;
    margin-top: 3px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

.accordion-item {
    border: none;
}

.accordion-header {
    border-radius: 0.375rem;
}

.accordion-body {
    background-color: #f8fcf7;
    border-top: 1px solid #e9ecef;
}

.contact-link .material-symbols-outlined {
    font-size: 1.8rem;
}

.contact-info-block {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.footer-logo {
    height: 35px;
}

.footer-site-title {
    color: #ffffff;
    font-size: 1.5rem;
}

.footer-icon {
    font-size: 1.3rem;
    vertical-align: middle;
    line-height: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1080;
    background-color: #212529;
    color: #ffffff;
    font-size: 0.9rem;
    flex-wrap: wrap;
    border: 2px solid #8BC34A !important;
}

.cookie-banner a {
    color: #8BC34A !important;
}

.cookie-banner .btn-success {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.cookie-banner .btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
}

.modal-header {
    background-color: #4CAF50;
}

.modal-header .btn-close-white {
    filter: invert(1);
}

.modal-footer .btn-primary {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.form-check-label strong {
    color: #333333;
}

.form-check-label small {
    color: #6c757d;
}

.form-control:focus, .form-select:focus {
    border-color: #8BC34A;
    box-shadow: 0 0 0 0.25rem rgba(139, 195, 74, 0.25);
}

.form-check-input:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 195, 74, 0.25);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875em;
}

/* Parent container styling for spacing */
.trustPillarUnit {
    margin-top: 30px; /* Top margin for separation from content above */
    padding-left: 20px; /* Left padding for content inside the unit */
    padding-right: 20px; /* Right padding for content inside the unit */
}

/* Heading styles within .trustPillarUnit */
.trustPillarUnit h1 {
    font-size: 28px; /* Moderate H1 font size */
    line-height: 1.2; /* Line height for better readability */
    margin-top: 1.5em; /* Top margin for separation */
    margin-bottom: 0.8em; /* Bottom margin for separation from next element */
    font-weight: bold; /* Standard bold weight */
}

.trustPillarUnit h2 {
    font-size: 24px; /* Moderate H2 font size */
    line-height: 1.25;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: bold;
}

.trustPillarUnit h3 {
    font-size: 20px; /* Moderate H3 font size */
    line-height: 1.3;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: bold;
}

.trustPillarUnit h4 {
    font-size: 18px; /* Moderate H4 font size */
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.trustPillarUnit h5 {
    font-size: 16px; /* Moderate H5 font size, often body text size */
    line-height: 1.5;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: bold;
}

/* Paragraph styles within .trustPillarUnit */
.trustPillarUnit p {
    font-size: 16px; /* Standard paragraph font size */
    line-height: 1.6; /* Good line height for text readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles within .trustPillarUnit */
.trustPillarUnit ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indentation for bullet points */
}

/* List item styles within .trustPillarUnit */
.trustPillarUnit li {
    line-height: 1.5; /* Line height for list items */
    margin-bottom: 0.5em; /* Space between individual list items */
}

.navbar-toggler{
    background: #4CAF50;
}

#composition, #about-product{
    overflow: hidden !important;
}