        body {
            background-color: #fff;
        }

        .navbar-custom {
            background-color: #D9A5B3;
        }

        .navbar-toggler-icon {
            color: #000;
            font-size: 1.25rem;
        }

        .hero {
            background-color: #fff;
            padding: 80px 20px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .login-button {
            border-radius: 50px;
            background-color: #fff;
            color: #D9A5B3;
            border: 2px solid #D9A5B3;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .login-button:hover {
            background-color: #D9A5B3;
            color: #fff;
            border: 1px solid #fff;
        }


        .cta-button {
            background-color: #D9A5B3;
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            padding: 12px 30px;
            transition: 0.3s ease;
        }

        .cta-button:hover {
            background-color: #c98ea1;
            color: #fff;
        }

        .h2-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: rgb(136, 0, 68);
            margin-bottom: 20px;
        }

        .benefits-list {
            list-style: none;
            padding-left: 0;
            margin-top: 30px;
        }

        .benefits-list li {
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .search-form {
            position: relative;
        }

        .search-form input {
            padding-right: 35px;
        }

        .search-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
        }

        .nav-item .nav-link i {
            font-size: 1.2rem;
        }