    .btn-theme {
            background-color: var(--secondary-color);
            color: var(--white-color);
            padding: 12px 30px;
            border-radius: 50px;
            text-transform: uppercase;
        }

        .btn-theme:hover {
            color: var(--white-color);
        }

        .details-banner h4 {
            color: var(--white-color);
            margin-top: 8px;
        }

        .crafted-section {
            padding: 100px 0px;
        }

        .crafted-section .content p {
            font-size: 18px;
            font-weight: 300;
            color: var(--white-color);
        }

        .crafted-image {
            height: auto;
        }

        .crafted-image img {
            width: 100%;
            height: 100%;
            border: 1px solid var(--white-color);
        }

        .crafted-title {
            font-size: 32px;
            font-weight: 400;
            color: var(--white-color);
        }

        .crafted-description {
            font-size: 1.1rem;
            color: #c5c5c5;
            line-height: 1.7;
        }

        .icon-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .interest-icon {
            background: var(--secondary-color);
            color: var(--white-color);
            padding: 10px 18px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .interest-icon:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .crafted-image img {
            border-radius: 20px;
            width: 100%;
            object-fit: cover;
        }

        .durations-section {
            padding: 100px 0px;
        }

        .durations-title {
            font-size: 32px;
            font-weight: 400;
            color: var(--white-color);
        }

        .durations-subtext {
            font-size: 1.1rem;
            color: #c7c7c7;
        }

        .duration-card {
            transition: 0.4s ease;
        }

        .duration-icon {
            font-size: 2rem;
            color: var(--white-color);
            transition: 0.3s;
        }

        .duration-card:hover .duration-icon {
            color: var(--white-color);
        }

        .duration-card-title {
            font-size: 1.25rem;
            font-weight: 400;
            margin-bottom: 10px;
            color: var(--white-color);
        }

        .duration-card-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #c5c5c5;
        }

        .guide-section {
            padding: 100px 0px;
        }

        .guide-title {
            font-size: 2.3rem;
            font-weight: 400;
            color: var(--white-color);
            margin-bottom: 1rem;
        }

        .guide-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #c7c7c7;
            max-width: 520px;
        }

        .guide-gallery {
            position: relative;
            height: 400px;
        }

        .guide-img {
            position: absolute;
            overflow: hidden;
            border: 5px solid #fff;
            transition: transform 0.4s ease;
        }

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

        .guide-img-1 {
            top: 0;
            left: 0;
            width: 65%;
            z-index: 2;
        }

        .guide-img-2 {
            bottom: 0;
            right: 0;
            width: 65%;
            z-index: 1;
        }

        .guide-img:hover {
            transform: scale(1.03);
        }

        .cta-form-section {
            padding: 100px 0px;
        }

        .cta-heading {
            font-size: 42px;
            font-weight: 400;
            color: var(--white-color);
        }

        .cta-subheading {
            font-size: 18px;
            font-weight: 300;
            color: #ffffff;
            margin-top: 0.8rem;
        }

        .cta-form {
            background: var(--primary-color);
            border-radius: 20px;
            box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.2);
        }

        .cta-form .form-control {
            border-radius: 0.7rem;
            border: 1px solid var(--secondary-color);
            padding: 0.75rem 1rem;
            font-size: 1rem;
            background-color: var(--primary-color);
            color: var(--white-color);
        }

        .custom-submit-btn {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 0.75rem 2.5rem;
            font-size: 1.05rem;
            border-radius: 2rem;
            transition: all 0.3s ease-in-out;
        }

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

        @media (max-width: 768px) {
            .btn-theme {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .details-banner h4 {
                font-size: 14px;
                margin-top: 6px;
            }

            .crafted-section {
                padding: 50px 15px;
            }

            .crafted-section .content p {
                font-size: 14px;
            }

            .crafted-title {
                font-size: 22px;
            }

            .crafted-description {
                font-size: 14px;
                line-height: 1.5;
            }

            .crafted-image img {
                border-radius: 15px;
                height: auto;
            }

            .icon-row {
                gap: 0.5rem;
                justify-content: center;
            }

            .interest-icon {
                font-size: 0.9rem;
                padding: 8px 12px;
            }

            .durations-section {
                padding: 50px 15px;
            }

            .durations-title {
                font-size: 22px;
            }

            .durations-subtext {
                font-size: 14px;
            }

            .duration-card-title {
                font-size: 1rem;
            }

            .duration-card-text {
                font-size: 0.875rem;
                margin-bottom: 0px;
            }

            .duration-card-text:last-child {
                margin-bottom: 16px;
            }

            .duration-icon {
                font-size: 1.5rem;
            }

            .guide-section {
                padding: 50px 15px;
            }

            .guide-title {
                font-size: 28px;
                text-align: center;
            }

            .guide-description {
                font-size: 14px;
                max-width: 90%;
                margin: 0 auto;
                text-align: center;
            }

            .guide-gallery {
                height: auto;
            }

            .guide-img-1,
            .guide-img-2 {
                position: relative;
                width: 100%;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                margin-bottom: 15px;
                border: 5px solid #fff;
            }

            .cta-form-section {
                padding: 50px 15px;
            }

            .cta-heading {
                font-size: 28px;
                text-align: center;
            }

            .cta-subheading {
                font-size: 14px;
                text-align: center;
                margin-top: 0.5rem;
            }

            .cta-form {
                border-radius: 15px;
            }

            .cta-form .form-control {
                font-size: 0.9rem;
                padding: 0.5rem 0.75rem;
            }

            .custom-submit-btn {
                font-size: 0.9rem;
                padding: 0.5rem 1.5rem;
            }
        }