blockquote {
            position: relative;
            background: #E5FFF9; 
            border: 1px solid #03211A; 
            border-radius: 16px;
            padding: 45px 30px;
            margin: 30px auto;
            max-width: 650px;
            text-align: center;
            font-size: 20px;
            color: #000504; 
            box-shadow: 0 4px 20px rgba(3, 33, 26, 0.08);
            transition: all 0.3s ease;
        }

blockquote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.bq-action-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    border-top: 1px dashed #a7f3d0;
    padding-top: 20px;
}

.bq-social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bq-social-links a {
    color: #059669;
    font-size: 20px;
    transition: 0.2s;
    text-decoration: none;
	background-color: border-box
}

.bq-social-links a:hover { 
    transform: scale(1.2); 
}

.bq-fb:hover { color: #1877f2; }
.bq-insta:hover { color: #e4405f; }
.bq-pin:hover { color: #bd081c; }
.bq-wa:hover { color: #25d366; }

.bq-copy-btn {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.bq-copy-btn:hover {
    background: #064e3b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}