
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Cabin", sans-serif;
        }
        :root {
            --primary-green: rgb(110, 229, 80);
        }
        body {
            overflow-x: hidden;
        }
        .container {
            max-width: 100% !important;
        }
        .navbar-custom {
            background-color: transparent;
            transition: background-color 0.3s ease-in-out;
        }
        .navbar-darkened {
            background-color: rgba(0, 0, 0, 0.6);
        }
        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link:hover {
            color: var(--primary-green) !important;
        }
        .navbar-toggler {
            border: none;
            outline: none;
        }
        .main-content {
            margin-top: 80px;
        }
        .trust-container {
            padding-top: 30px;
            display: flex;
            flex-direction: column;
            background-color: #f9f9f9;
            text-align: center;
        }
        .trust-container-header-text {
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        .trust-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 20px 10px;
        }
        .trust-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 220px;
            max-width: 280px;
        }
        .trust-image {
            width: 60px;
            height: 60px;
        }
        .trust-card-header {
            font-size: 1.4rem;
            font-weight: 400;
            line-height: 1.2;
        }
        .trust-card-subtext {
            font-size: 0.9rem;
            font-weight: 300;
            line-height: 1.5;
        }
        .meet-single-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            background: rgb(223, 255, 215);
            margin-top: 50px;
            padding: 40px 20px;
            gap: 30px;
        }
        .meet-single-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
        }
        .chat-section {
            padding: 20px;
            width: 100%;
            margin: 0 auto;
            margin-bottom: 30px;
            text-align: center;
        }
        .chat-section h1 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
        }
        .chat-section span {
            color: var(--primary-green);
        }
        .image-text-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
        }
        .image-text {
            text-align: center;
            flex: 1;
            min-width: 280px;
            max-width: 400px;
        }
        .image-text img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }
        .image-text p {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 10px;
        }
        .card-slider-section {
            text-align: center;
            padding: 20px;
            margin-bottom: 40px;
        }
        .card-slider-section h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .card-slider-section span {
            color: var(--primary-green);
        }
        .card-slider-section p {
            font-weight: 400;
            font-size: 1rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .card-slider-wrapper {
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }
        .card-slider {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .card {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 20px;
            width: 100%;
            max-width: 280px;
            margin: 80px 0 20px;
            position: relative;
            text-align: center;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }
        .card-image {
            position: absolute;
            top: -75px;
            left: 50%;
            transform: translateX(-50%);
        }
        .card-image img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid #fff;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }
        .card-content {
            margin-top: 60px;
        }
        .card-content .comment {
            font-style: italic;
            color: #333;
            font-size: 0.9rem;
            font-weight: 400;
            line-height: 1.5;
        }
        .card-content .name {
            color: rgba(0, 0, 0, 1);
            font-weight: 800;
            font-size: 1.1rem;
            margin: 10px 0;
        }
        .card-content .rating {
            color: #ffcc00;
            font-size: 1.1rem;
        }
        .footer {
            background-color: black;
            color: white;
            padding: 40px 20px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            gap: 30px;
        }
        .footer-logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .footer-logo-container img {
            width: 60px;
            height: 60px;
        }
        .footer-icons-container {
            display: flex;
            align-items: center;
            margin: 20px 0;
            gap: 10px;
        }
        .footer-icons-container ion-icon {
            color: white;
            width: 25px;
            height: 25px;
        }
        .footer-sub-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            width: 100%;
        }
        .footer-column {
            flex: 1;
            min-width: 220px;
            max-width: 300px;
        }
        .footer-column h3 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-align: center;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
            text-align: center;
        }
        .footer-column ul li {
            margin-bottom: 10px;
        }
        .footer-column ul li a {
            font-size: 0.9rem;
            font-weight: 500;
            display: block;
            text-decoration: none;
            color: white;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            color: #fff;
            width: 100%;
        }
        @media (min-width: 576px) {
            .trust-container-header-text {
                font-size: 2.5rem;
            }
            .chat-section h1 {
                font-size: 2rem;
            }
            .card-slider-section h2 {
                font-size: 2.2rem;
            }
        }
        @media (min-width: 768px) {
            .trust-container {
                padding-top: 60px;
            }
            .trust-container-header-text {
                font-size: 2.8rem;
            }
            .trust-content {
                justify-content: space-around;
            }
            .meet-single-container {
                flex-direction: row;
                justify-content: space-around;
            }
            .meet-single-image {
                width: 45%;
            }
            .chat-section h1 {
                font-size: 2.5rem;
            }
            .image-text-container {
                justify-content: space-around;
            }
            .footer-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
            .footer-logo-container {
                align-items: flex-start;
                margin-left: 0;
            }
            .footer-icons-container {
                justify-content: flex-start;
            }
            .footer-column h3,
            .footer-column ul {
                text-align: left;
            }
        }
        @media (min-width: 992px) {
            .trust-container-header-text {
                font-size: 3.2rem;
            }
            .trust-content {
                justify-content: space-between;
                margin: 20px 50px;
            }
            .chat-section h1 {
                font-size: 3rem;
            }
            .card-slider-section h2 {
                font-size: 2.5rem;
            }
            .card-slider {
                flex-wrap: nowrap;
                justify-content: space-between;
            }
            .footer-sub-container {
                justify-content: space-between;
            }
        }
        @media (min-width: 1200px) {
            .trust-container-header-text {
                font-size: 3.5rem;
            }
            .chat-section {
                max-width: 1200px;
            }
            .chat-section h1 {
                font-size: 3.5rem;
            }
            .card-slider-section p {
                font-size: 1.2rem;
            }
        }
        @media (min-width: 1600px) {
            .container {
                max-width: 1500px;
            }
            .trust-content {
                max-width: 1400px;
                margin: 20px auto;
            }
            .meet-single-container {
                max-width: 1400px;
                margin: 50px auto;
            }
        }
        @media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
            .trust-card {
                min-width: 45%;
                margin-bottom: 30px;
            }
            .meet-single-container {
                flex-direction: column;
            }
            .meet-single-image {
                width: 80%;
                margin-bottom: 20px;
            }
        }
        @media (min-width: 1280px) {
            .trust-container-header-text {
                font-size: 3.8rem;
            }
        }
        @media (min-width: 1920px) {
            .trust-container-header-text {
                font-size: 4rem;
            }
            .trust-card-header {
                font-size: 1.8rem;
            }
            .trust-card-subtext {
                font-size: 1.1rem;
            }
            .chat-section h1 {
                font-size: 4rem;
            }
        }
    