/* Container */
        .rera-container {
            position: relative;
            display: inline-block;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
                @media only screen and (max-width: 400px) {
  .rera-trigger {
    width:100%;
  }
}

        /* Trigger Button */
        .rera-trigger {
            background-color: #0D2A4A; /* Navy Blue */
            color: #ffffff;
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .rera-trigger:hover {
            background-color: #C6A15B; /* Gold Accent */
        }

        /* Info Box */
        .rera-info {
            display: none;
            position: absolute;
            top: 120%;
            left: 0;
            background-color: #ffffff;
            border: 2px solid #0D2A4A;
            border-radius: 8px;
            padding: 15px;
            width: 320px;
            box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
            z-index: 1000;
        }

        .rera-container:hover .rera-info {
            display: block;
        }

        /* Scrollable Area */
        .scrollable-content {
            max-height: 200px;
            overflow-y: auto;
            padding-right: 10px;
        }

        /* Styling for the info items */
        .info-row {
            margin-bottom: 12px;
            font-size: 14px;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .info-row strong {
            color: #0D2A4A;
            margin-right: 5px;
        }

        /* Heading */
        .info-header {
            margin: 0 0 15px 0;
            color: #0D2A4A;
            border-bottom: 2px solid #C6A15B;
            padding-bottom: 8px;
            font-size: 16px;
        }

        /* Copy Icon Button */
        .copy-icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: #C6A15B;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .copy-icon-btn:hover {
            transform: scale(1.2);
            color: #0D2A4A;
        }
        
        @media only screen and (max-width: 400px) {
  .rera-trigger {
    width:100%;
  }
}

@media only screen and (max-width: 400px) {
  .rera-container {
    width:100%;
  }
}